Skip to content

Commit c4be849

Browse files
committed
fixed failing tests and added test for adding/removing from lib search paths.
1 parent 915ef35 commit c4be849

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/pbxProject.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ pbxProject.prototype.hasFile = function (filePath) {
510510
for (id in files) {
511511
file = files[id];
512512

513-
if (file.path == filePath) {
513+
if (file.path == filePath || file.path == ('"' + filePath + '"')) {
514514
return true;
515515
}
516516
}

0 commit comments

Comments
 (0)