We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4769031 commit 3da8ac5Copy full SHA for 3da8ac5
.github/workflows/scripts/boot-simulator.sh
@@ -15,7 +15,7 @@ echo "Attempting to boot iOS Simulator $SIM..."
15
xcrun simctl list |grep -i "$SIM ("|grep -v 'Phone:'|grep -v 'unavailable'|grep -v CoreSimulator|grep Booted
16
17
# Are we a Debug or Release build?
18
-BUILDDIR="$(ls -1 ios/build/Build/Products/)"
+BUILDDIR="$( find ios/build/Build/Products -type d |grep 'testing.app$' | head -1)"
19
20
# Install our app (glob so Release or Debug works)
21
-xcrun simctl install "$SIM" "ios/build/Build/Products/$BUILDDIR/testing.app"
+xcrun simctl install "$SIM" "$BUILDDIR"
0 commit comments