From 44e79554e1f6e399fdeac785fb8cc537531ed70a Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Thu, 15 Dec 2016 12:46:56 -0800 Subject: [PATCH] Include project file name on iOS xcodebuild, in case a second project file is found --- lime/tools/helpers/IOSHelper.hx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lime/tools/helpers/IOSHelper.hx b/lime/tools/helpers/IOSHelper.hx index 1b97c42c5..2ab13a5b7 100644 --- a/lime/tools/helpers/IOSHelper.hx +++ b/lime/tools/helpers/IOSHelper.hx @@ -46,6 +46,9 @@ class IOSHelper { } + commands.push ("-project"); + commands.push (project.app.file + ".xcodeproj"); + if (additionalArguments != null) { commands = commands.concat (additionalArguments);