Skip to content

Commit

Permalink
Fix if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
simlay committed Feb 20, 2024
1 parent 4accdd1 commit 3f866e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3f866e2

Please sign in to comment.