From 40dbdeaddea60b72246b7449b2dd83e5e0f14db9 Mon Sep 17 00:00:00 2001 From: Benjamen Meyer Date: Wed, 11 Dec 2024 01:57:09 -0500 Subject: [PATCH] proper OS matching --- script/bootstrap-mac.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/script/bootstrap-mac.sh b/script/bootstrap-mac.sh index fdcc6b33f..46f0f9c11 100755 --- a/script/bootstrap-mac.sh +++ b/script/bootstrap-mac.sh @@ -21,13 +21,13 @@ case "${DETECT_MAC_OS_VERSION}" in "12.*") MAC_OS_NAME="Monterey" ;; - "13.*") + "13.0"|"13.1"|"13.2"|"13.3"|"13.4"|"13.5"|"13.6"|"13.7") MAC_OS_NAME="Ventura" ;; - "14.*") + "14.0"|"14.1"|"14.2"|"14.3"|"14.4"|"14.5"|"14.6"|"14.7") MAC_OS_NAME="Sonoma" ;; - "15.*") + "15.0"|"15.1"|"15.2"|"15.3"|"15.4"|"15.5"|"15.6"|"15.7") MAC_OS_NAME="Sequoia" ;; *)