Skip to content

Commit

Permalink
fix: add Carthage to ingnored directories when finding .xcodeproj (#839)
Browse files Browse the repository at this point in the history
  • Loading branch information
michalchudziak authored and thymikee committed Nov 7, 2019
1 parent 675240d commit e703283
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/platform-ios/src/config/findProject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const IOS_BASE = 'ios';
/**
* These folders will be excluded from search to speed it up
*/
const GLOB_EXCLUDE_PATTERN = ['**/@(Pods|node_modules)/**'];
const GLOB_EXCLUDE_PATTERN = ['**/@(Pods|node_modules|Carthage)/**'];

/**
* Finds iOS project by looking for all .xcodeproj files
Expand Down

0 comments on commit e703283

Please sign in to comment.