From 9527fb29612cf891db1bbcf0b1660c099ec43908 Mon Sep 17 00:00:00 2001 From: Matt Kiazyk Date: Mon, 15 Sep 2025 22:08:49 -0500 Subject: [PATCH] fix: xcode 26 check for Apple Silicon installs --- Xcodes/Backend/AppState+Runtimes.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Xcodes/Backend/AppState+Runtimes.swift b/Xcodes/Backend/AppState+Runtimes.swift index f9a9864..a0a0ba8 100644 --- a/Xcodes/Backend/AppState+Runtimes.swift +++ b/Xcodes/Backend/AppState+Runtimes.swift @@ -63,7 +63,8 @@ extension AppState { if selectedXcode.version > Version(major: 16, minor: 0, patch: 0) { if runtime.architectures?.isAppleSilicon ?? false { - if selectedXcode.version > Version(major: 26, minor: 0, patch: 0) { + // Need Xcode 26 but with some RC/Beta's its simpler to just to greater > 25 + if selectedXcode.version > Version(major: 25, minor: 0, patch: 0) { downloadRuntimeViaXcodeBuild(runtime: runtime) } else { // not supported