Skip to content

Commit

Permalink
Update compatibility logic
Browse files Browse the repository at this point in the history
  • Loading branch information
ninxsoft committed Oct 28, 2023
1 parent 9821451 commit b04fecb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mist/Views/List/InstallerExportView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ struct InstallerExportView: View {
return false
}

return architecture == .appleSilicon && installer.bigSurOrNewer
return architecture == .intel || (architecture == .appleSilicon && installer.bigSurOrNewer)
}
private var compatibilityMessage: String {
"**Note:** ISOs are unavailable for building **macOS Catalina 10.15 and older** on [Apple Silicon Macs](https://support.apple.com/en-us/HT211814)."
Expand Down

0 comments on commit b04fecb

Please sign in to comment.