From 769113ec0ea2e58b95ade904b759b27e8979c491 Mon Sep 17 00:00:00 2001 From: iska Date: Sat, 16 Jul 2016 13:37:50 +0200 Subject: [PATCH] Fix travis.yml Add missing semicolon to end if-then-statement --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d92cbd8..1767886 100644 --- a/.travis.yml +++ b/.travis.yml @@ -38,5 +38,5 @@ script: - open -b com.apple.iphonesimulator --args -CurrentDeviceUDID $SIMULATOR_ID - xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO clean build | xcpretty -c - if [ "$SDK" != "$WATCHOS_SDK" ]; then - xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO test | xcpretty -c + xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO test | xcpretty -c; fi