From ce726f8f948e0c5897e283094fbab26b46f4930b Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 26 Mar 2018 15:03:48 -0700 Subject: [PATCH] Remove unintentional command line argument addition --- lime/tools/helpers/IOSHelper.hx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lime/tools/helpers/IOSHelper.hx b/lime/tools/helpers/IOSHelper.hx index cc8be9b99..2cb3e01b7 100644 --- a/lime/tools/helpers/IOSHelper.hx +++ b/lime/tools/helpers/IOSHelper.hx @@ -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")) {