We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4960a5 commit f1bfb5aCopy full SHA for f1bfb5a
1 file changed
src/local/plist.rs
@@ -74,7 +74,9 @@ pub fn get_arm_system_version() -> String {
74
.and_then(|dict| dict.get("ProductVersion"))
75
.and_then(|id| id.as_string())
76
.unwrap_or("");
77
- if product_version.starts_with("14") {
+ if product_version.starts_with("26") {
78
+ return "arm64_sonoma".to_string();
79
+ } else if product_version.starts_with("14") {
80
return "arm64_sonoma".to_string();
81
} else if product_version.starts_with("13") {
82
return "arm64_ventura".to_string();
0 commit comments