File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -255,7 +255,7 @@ pbxProject.prototype.addToPbxSourcesBuildPhase = function (file) {
255255pbxProject . 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 }
You can’t perform that action at this time.
0 commit comments