Skip to content

Commit

Permalink
Merge pull request #29 from Titozzz/patch-1
Browse files Browse the repository at this point in the history
Update getFilesMatchingGlob to follow symlinks
  • Loading branch information
Kevin Brown authored Apr 1, 2018
2 parents 431e5b5 + 85a3881 commit 0e9896b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ module.exports = {
const project = this.getClosestLikelyReactNativeProjectPath();
if (!project) return callback(new Error('Unable to find project path.'));

glob(path.join(project, pattern), (err, files) => {
glob(path.join(project, pattern), { follow: true }, (err, files) => {
if (err) return callback(err);

// Go through each project.
Expand Down

0 comments on commit 0e9896b

Please sign in to comment.