From adc5e42b4783ca2fde48c91efde018144c6b461f Mon Sep 17 00:00:00 2001 From: Janne Lehikoinen Date: Fri, 11 Nov 2022 08:08:41 +0200 Subject: [PATCH] Add Ventura specific path to notification message - System Settings > General > Software Update --- OSUpdateNotifier.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/OSUpdateNotifier.sh b/OSUpdateNotifier.sh index d5c0159..361f8dc 100755 --- a/OSUpdateNotifier.sh +++ b/OSUpdateNotifier.sh @@ -166,7 +166,9 @@ if [[ "$UpdateAction" == "major" ]]; then else addMajorText=" " addMajorUpgradeText="update" - if [[ "$OSMajorVersion" -ge 11 ]] || [[ "$OSMajorVersion" -eq 10 && "$OSMinorVersion" -ge 14 ]]; then + if [[ "$OSMajorVersion" -eq 13 ]]; then + StepsToUpgrade=" > System Settings > General > Software Update" + elif [[ "$OSMajorVersion" -eq 11 ]] || [[ "$OSMajorVersion" -eq 12 ]] || [[ "$OSMajorVersion" -eq 10 && "$OSMinorVersion" -ge 14 ]]; then #SUGuide="by clicking on the Apple menu, clicking System Preferences and clicking Software Update to install any available updates." StepsToUpgrade=" > System Preferences > Software Update" else