You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
printf"%s\n""This script requires OS X 10.10 or higher (because of the use of launchctl plist)"1>&2
exit 1
fi
to:
IFS='.'read -r maj min _ <<(sw_vers -productVersion)printf -v normalized_ver '%d%02d'"$maj""$min"if(( normalized_ver <1010));thenprintf'%s\n%s\n'"This script requires macOS 10.10 or higher (because of the use of launchctl plist)""You seem to be running $maj.$min"1>&2exit 1
fi
The text was updated successfully, but these errors were encountered:
Hi @erikberglund 👋
Here's a small change that I tested to allow your (very useful) privilegedHelperToolStatus script to run on macOS 11.x
change this section
Scripts/tools/privilegedHelperToolStatus/privilegedHelperToolStatus
Lines 236 to 239 in ac60be1
to:
The text was updated successfully, but these errors were encountered: