Skip to content

Commit f134750

Browse files
committed
Merge pull request #1448 from NativeScript/kerezov/xcode-7.2
Don't code sign upon simulator build
2 parents f2ed563 + 037a44d commit f134750

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/services/ios-project-service.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,8 @@ export class IOSProjectService extends projectServiceBaseLib.PlatformProjectServ
199199
"-sdk", "iphonesimulator",
200200
"-arch", "i386",
201201
"VALID_ARCHS=\"i386\"",
202-
"CONFIGURATION_BUILD_DIR=" + path.join(projectRoot, "build", "emulator")
202+
"CONFIGURATION_BUILD_DIR=" + path.join(projectRoot, "build", "emulator"),
203+
"CODE_SIGN_IDENTITY="
203204
]);
204205
}
205206

0 commit comments

Comments
 (0)