Skip to content

Commit

Permalink
Fix searchPathForFile function
Browse files Browse the repository at this point in the history
  • Loading branch information
belemaire committed Mar 25, 2019
1 parent bb1891a commit 19604a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pbxProject.js
Original file line number Diff line number Diff line change
Expand Up @@ -2234,7 +2234,7 @@ function searchPathForFile(file, proj) {
} else if (file.customFramework && file.dirname) {
return '"\\"' + file.dirname + '\\""'
} else {
return '"\\"$(SRCROOT)/' + proj.productName + fileDir + '\\""'
return '"\\"$(SRCROOT)' + fileDir + '\\""'
}
}

Expand Down

0 comments on commit 19604a6

Please sign in to comment.