aboutsummaryrefslogtreecommitdiff
path: root/UnitTesting
diff options
context:
space:
mode:
authorGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2014-09-22 13:00:06 +0000
committerGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2014-09-22 13:00:06 +0000
commitfa49c3a534194d2b39f00c9b035cd0f4c26a2064 (patch)
tree45fffa3cd6128ca6e8d679e17ebf31451e081919 /UnitTesting
parent992fe551e2d3eea78027454482db33fa2aaafc31 (diff)
Quote DEVELOPER_BIN_DIR in case it has spaces.
This is required if the Xcode path contains "Xcode6-Beta6 2.app" for example. DELTA=1 (0 added, 0 deleted, 1 changed) DELTA_BY_EXTENSION=sh=1
Diffstat (limited to 'UnitTesting')
-rwxr-xr-xUnitTesting/BuildUsingXCodeBuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/UnitTesting/BuildUsingXCodeBuild.sh b/UnitTesting/BuildUsingXCodeBuild.sh
index dbc5d73..8237331 100755
--- a/UnitTesting/BuildUsingXCodeBuild.sh
+++ b/UnitTesting/BuildUsingXCodeBuild.sh
@@ -30,7 +30,7 @@ fi
# TEST_AFTER_BUILD is explicitly set to YES to ensure that when we build
# through xcodebuild we will not hit this point again. xcodebuild used to
# set this to YES itself, but starting with 4.3, it no longer sets it.
-exec $DEVELOPER_BIN_DIR/xcodebuild \
+exec "${DEVELOPER_BIN_DIR}/xcodebuild" \
-project "${PROJECT_FILE_PATH}" \
-target "${TARGET_NAME}" \
-sdk "${SDKROOT}" \