Skip to content

Commit 3bf69a0

Browse files
committed
test: ci v1
1 parent 3f5184f commit 3bf69a0

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ jobs:
2020
2121
# 설치된 iOS Simulator 런타임 버전들 추출 (예: 17.2, 18.0 ...)
2222
# 출력 포맷이 달라질 수 있어, "iOS <version>" 패턴에서 숫자만 뽑습니다.
23-
mapfile -t versions < <(
23+
versions=()
24+
while IFS= read -r v; do
25+
versions+=("$v")
26+
done < <(
2427
xcrun simctl runtime list 2>/dev/null \
2528
| grep -Eo 'iOS ([0-9]+(\.[0-9]+)?)' \
2629
| awk '{print $2}' \

0 commit comments

Comments
 (0)