Skip to content

Instantly share code, notes, and snippets.

@kitzy
Created February 6, 2017 18:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kitzy/cef712c69c3df327778e3fc68e97611b to your computer and use it in GitHub Desktop.
Save kitzy/cef712c69c3df327778e3fc68e97611b to your computer and use it in GitHub Desktop.
#!/bin/bash
result=$(/usr/bin/defaults read /Library/Preferences/com.apple.commerce AutoUpdateRestartRequired)
if [ "$result" != 1 ]
then
defaults write /Library/Preferences/com.apple.commerce AutoUpdateRestartRequired -bool TRUE
result=$(/usr/bin/defaults read /Library/Preferences/com.apple.commerce AutoUpdateRestartRequired)
fi
echo "<result>$result</result>"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment