Skip to content

Commit 2551ea1

Browse files
committed
FCUK me
1 parent d508e58 commit 2551ea1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/pbxProject.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ pbxProject.prototype.addToPbxSourcesBuildPhase = function (file) {
255255
pbxProject.prototype.removeFromPbxSourcesBuildPhase = function (file) {
256256
var sources = this.pbxSourcesBuildPhaseObj(), i;
257257
for(i in sources.files) {
258-
if(sources.files[i].comment = longComment(file)) {
258+
if(sources.files[i].comment == longComment(file)) {
259259
sources.files.splice(i, 1);
260260
break;
261261
}
@@ -271,7 +271,7 @@ pbxProject.prototype.removeFromPbxResourcesBuildPhase = function (file) {
271271
var sources = this.pbxResourcesBuildPhaseObj(), i;
272272

273273
for(i in sources.files) {
274-
if(sources.files[i].comment = longComment(file)) {
274+
if(sources.files[i].comment == longComment(file)) {
275275
sources.files.splice(i, 1);
276276
break;
277277
}

0 commit comments

Comments
 (0)