Skip to content

Commit

Permalink
fix: infinite loop when loading framework
Browse files Browse the repository at this point in the history
  • Loading branch information
yesmeck committed Mar 26, 2021
1 parent 59a554c commit 99c80ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function findProjectPath(resourcePath) {

const ext = path.extname(resourcePath);

if (ext === '.xcodeproj' || ext === '.xcworkspace') {
if (ext === '.xcodeproj' || ext === '.xcworkspace' || ext === '.framework') {
return resourcePath;
}

Expand Down

0 comments on commit 99c80ba

Please sign in to comment.