We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6e9863 commit 1fd40aaCopy full SHA for 1fd40aa
lib/pbxProject.js
@@ -289,7 +289,9 @@ pbxProject.prototype.removeFromPbxFileReferenceSection = function (file) {
289
var refObj = pbxFileReferenceObj(file);
290
for(i in this.pbxFileReferenceSection()) {
291
if(this.pbxFileReferenceSection()[i].name == refObj.name ||
292
- this.pbxFileReferenceSection()[i].path == refObj.path) {
+ ('"' + this.pbxFileReferenceSection()[i].name + '"') == refObj.name ||
293
+ this.pbxFileReferenceSection()[i].path == refObj.path ||
294
+ ('"' + this.pbxFileReferenceSection()[i].path + '"') == refObj.path) {
295
file.fileRef = file.uuid = i;
296
delete this.pbxFileReferenceSection()[i];
297
break;
0 commit comments