From 523cd639ab5fbf642a945050000f7a74629da6c8 Mon Sep 17 00:00:00 2001 From: Stefan van den Oord Date: Mon, 12 Nov 2018 17:06:25 +0100 Subject: [PATCH] Fixes build script to work for Xcode 10 again --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4310127..afb4315 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,5 +17,5 @@ matrix: before_install: - gem install xcpretty script: - - if [ ${XCODE} = "9" ]; then set -o pipefail && xcodebuild -project NetUtils.xcodeproj -scheme NetUtils test -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 6,OS=${IOS_VERSION}"|xcpretty; fi + - if [ ${XCODE} = "1" ]; then set -o pipefail && xcodebuild -project NetUtils.xcodeproj -scheme NetUtils test -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 6,OS=${IOS_VERSION}"|xcpretty; fi - ./Tests/${TEST_DIR}/runTest.sh