From bfeb90d553250becf2b58dcef298b500429abb57 Mon Sep 17 00:00:00 2001 From: Andrew Heard Date: Tue, 12 Nov 2024 21:06:52 -0500 Subject: [PATCH] Check if Xcode 16.1 exists instead of OS version check --- scripts/test.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/test.sh b/scripts/test.sh index 156fad1af..42cee7e5b 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -20,8 +20,7 @@ set -euo pipefail -macos_version=$(sw_vers --productVersion) -if [[ "$macos_version" -ge 15 ]]; then +if [ -d "/Applications/Xcode_16.1.app" ]; then xcode_version="16.1" iphone_version="16" else