From 3f866e2488da3c5883c391430e7d4c45a67f689d Mon Sep 17 00:00:00 2001 From: Sebastian Imlay Date: Tue, 20 Feb 2024 16:57:30 -0500 Subject: [PATCH] Fix if statement --- .travis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.sh b/.travis.sh index 9450db31..f888141b 100755 --- a/.travis.sh +++ b/.travis.sh @@ -98,7 +98,7 @@ then RUNTIME_ID=$(xcrun simctl list runtimes | grep iOS | cut -d ' ' -f 7 | tail -1) export SIM_ID=$(xcrun simctl create My-iphone-se com.apple.CoreSimulator.SimDeviceType.iPhone-SE-3rd-generation $RUNTIME_ID) xcrun simctl boot $SIM_ID - if [ "$(uname -m)" -eq "arm64" ]; then + if [ "$(uname -m)" = "arm64" ]; then tests_sequence_ios_sim $SIM_ID else tests_sequence $SIM_ID