Skip to content

Commit 9527fb2

Browse files
committed
fix: xcode 26 check for Apple Silicon installs
1 parent 084bd8f commit 9527fb2

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Xcodes/Backend/AppState+Runtimes.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ extension AppState {
6363
if selectedXcode.version > Version(major: 16, minor: 0, patch: 0) {
6464

6565
if runtime.architectures?.isAppleSilicon ?? false {
66-
if selectedXcode.version > Version(major: 26, minor: 0, patch: 0) {
66+
// Need Xcode 26 but with some RC/Beta's its simpler to just to greater > 25
67+
if selectedXcode.version > Version(major: 25, minor: 0, patch: 0) {
6768
downloadRuntimeViaXcodeBuild(runtime: runtime)
6869
} else {
6970
// not supported

0 commit comments

Comments
 (0)