Skip to content

Commit b54f1e6

Browse files
committed
fix
1 parent a293dbf commit b54f1e6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -965,13 +965,13 @@ case "$COMMAND" in
965965

966966
"install-xcode-platform")
967967
target="$2"
968-
if [[ "$REALM_XCODE_VERSION" = 26 ]]; then
968+
# if [[ "$REALM_XCODE_VERSION" = 26 ]]; then
969969
# downloadPlatform fails on GHA for Xcode 26.2 with "Unable to
970970
# connect to simulator.", and for some reason listing the simulators
971971
# first fixes the problem. On all other Xcode versions listing the
972972
# simulators first doesn't work as simctl hasn't been installed yet.
973-
xcrun simctl list > /dev/null
974-
fi
973+
xcrun simctl list > /dev/null || true
974+
# fi
975975
case "$target" in
976976
ios*) xcodebuild -downloadPlatform iOS ;;
977977
tvos*) xcodebuild -downloadPlatform tvOS ;;

0 commit comments

Comments
 (0)