Skip to content

Commit

Permalink
Add macOS 15 to the known macOS versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
lgarron committed Sep 27, 2024
1 parent 3d178ff commit ee44df1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ fn completions_for_shell(cmd: &mut clap::Command, generator: impl Generator) {
}

fn known_mac_os_version(mac_os: &str) -> bool {
for prefix in ["14.", "13.", "12.", "11."] {
for prefix in ["15.", "14.", "13.", "12.", "11."] {
if mac_os.starts_with(prefix) {
return true;
}
Expand Down

0 comments on commit ee44df1

Please sign in to comment.