Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion OSUpdateNotifier.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down