Skip to content

Commit 4b19fcf

Browse files
committed
Update comments
1 parent 916825c commit 4b19fcf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/ci-ensure-runtime-loaded.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ if [ -z "$PLATFORM" ]; then
4747
usage
4848
fi
4949

50-
echo "Ensuring runtime $OS_VERSION is loaded"
50+
echo "Ensuring runtime $PLATFORM ($OS_VERSION) is loaded"
5151

5252
# Check if the runtime is loaded
5353
if xcrun simctl list runtimes -v | grep -qE "$PLATFORM $OS_VERSION" && ! xcrun simctl list runtimes -v | grep -qE "$PLATFORM $OS_VERSION.*unavailable" ; then
5454
echo "Runtime $OS_VERSION is loaded"
5555
exit 0
5656
fi
5757

58-
echo "Runtime $OS_VERSION is not loaded, will try to load it"
58+
echo "Runtime $PLATFORM ($OS_VERSION) is not loaded, will try to load it"
5959

6060
# Unmount simulator volumes once before checking
6161
for dir in /Library/Developer/CoreSimulator/Volumes/*; do
@@ -78,5 +78,5 @@ while [ $count -lt $MAX_ATTEMPTS ]; do
7878
sleep 5
7979
done
8080

81-
echo "Runtime $OS_VERSION is not loaded after $count attempts"
81+
echo "Runtime $PLATFORM ($OS_VERSION) is not loaded after $count attempts"
8282
exit 1

0 commit comments

Comments
 (0)