mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-03-25 08:55:46 +00:00
fix: xcode 26 check for Apple Silicon installs
This commit is contained in:
parent
084bd8f4a1
commit
9527fb2961
1 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue