Skip to content

Commit f1bfb5a

Browse files
committed
test 修改测试用例
1 parent d4960a5 commit f1bfb5a

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/local/plist.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,9 @@ pub fn get_arm_system_version() -> String {
7474
.and_then(|dict| dict.get("ProductVersion"))
7575
.and_then(|id| id.as_string())
7676
.unwrap_or("");
77-
if product_version.starts_with("14") {
77+
if product_version.starts_with("26") {
78+
return "arm64_sonoma".to_string();
79+
} else if product_version.starts_with("14") {
7880
return "arm64_sonoma".to_string();
7981
} else if product_version.starts_with("13") {
8082
return "arm64_ventura".to_string();

0 commit comments

Comments
 (0)