We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19879f9 commit 09d6466Copy full SHA for 09d6466
lib/pbxProject.js
@@ -277,7 +277,9 @@ pbxProject.prototype.removeFromPbxFileReferenceSection = function (file) {
277
var refObj = pbxFileReferenceObj(file);
278
for(i in this.pbxFileReferenceSection()) {
279
if(this.pbxFileReferenceSection()[i].name == refObj.name ||
280
- this.pbxFileReferenceSection()[i].path == refObj.path) {
+ ('"' + this.pbxFileReferenceSection()[i].name + '"') == refObj.name ||
281
+ this.pbxFileReferenceSection()[i].path == refObj.path ||
282
+ ('"' + this.pbxFileReferenceSection()[i].path + '"') == refObj.path) {
283
file.fileRef = file.uuid = i;
284
delete this.pbxFileReferenceSection()[i];
285
break;
0 commit comments