Remove unintentional command line argument addition

This commit is contained in:
Adam
2018-03-26 15:03:48 -07:00
committed by Joshua Granick
parent 516f6ebb3b
commit ce726f8f94

View File

@@ -123,8 +123,7 @@ class IOSHelper {
project.setenv ("CONFIGURATION", configuration);
// setting CONFIGURATION and PLATFORM_NAME in project.environment doesn't set them for xcodebuild so also pass via command line
var commands = [ "-configuration", configuration, "PLATFORM_NAME=" + platformName, "SDKROOT=" + platformName + iphoneVersion];
commands.push("-IDEBuildOperationMaxNumberOfConcurrentCompileTasks=1");
var commands = [ "-configuration", configuration, "PLATFORM_NAME=" + platformName, "SDKROOT=" + platformName + iphoneVersion ];
if (project.targetFlags.exists ("simulator")) {