Skip to content

Instantly share code, notes, and snippets.

@chockenberry
Created August 5, 2014 18:41
Show Gist options
  • Save chockenberry/27d77be84d7df9b9ed14 to your computer and use it in GitHub Desktop.
Save chockenberry/27d77be84d7df9b9ed14 to your computer and use it in GitHub Desktop.
#!/bin/sh
find=`find /Applications /Applications/Utilities -maxdepth 2 -name '*.app' -exec echo \{\} \;`
#echo $find
IFS=$'\n'
apps=($find)
total=${#apps[*]}
echo "Checking $total applications..."
echo "The following applications will break in Gatekeeper on 10.9.5 and Yosemite:"
count=0
for ((i = 0; i < $total; i++)); do
app=${apps[${i}]}
codesign -dv $app 2>&1 | grep "Sealed Resources version=1" > /dev/null
if [ $? -eq 0 ]; then
echo "$app"
count=$((count+1))
fi
done
echo "$count applications affected"
@CameronBanga
Copy link

This can't be real. :-( As a shortcut for anyone, here's my list of apps I had, as reference.

The following applications will break in Gatekeeper on 10.9.5 and Yosemite:
/Applications/1Password.app
/Applications/Adobe Audition CC/Adobe Audition CC.app
/Applications/Adobe Illustrator CC/Adobe Illustrator.app
/Applications/Adobe Photoshop CC/Adobe Photoshop CC.app
/Applications/Adobe Photoshop Lightroom 5.app
/Applications/Airmail AMT.app
/Applications/Airmail.app
/Applications/Android Studio.app
/Applications/Caffeine.app
/Applications/Calca.app
/Applications/Carbon Copy Cloner.app
/Applications/Clean.app
/Applications/Clocks.app
/Applications/Coda 2.app
/Applications/CodeBox.app
/Applications/Command-C.app
/Applications/DaisyDisk.app
/Applications/Dash.app
/Applications/Day One.app
/Applications/Deckset.app
/Applications/Dropbox.app
/Applications/Fantastical.app
/Applications/File Viewer.app
/Applications/Firefox.app
/Applications/Fitbit Connect.app
/Applications/Folx GO.app
/Applications/Genymotion Shell.app
/Applications/Genymotion.app
/Applications/GitStatX.app
/Applications/Google Chrome.app
/Applications/GoToMeeting (1350).app
/Applications/GoToMeeting (1415).app
/Applications/GPG Keychain Access.app
/Applications/Hacky.app
/Applications/Harvest.app
/Applications/Icon Slate.app
/Applications/iMovie.app
/Applications/JPEGmini.app
/Applications/Kaleidoscope.app
/Applications/Keynote.app
/Applications/Kindle.app
/Applications/Linkinus.app
/Applications/Logitech/Logitech Gaming Software.app
/Applications/MesaSQLite.app
/Applications/Microsoft Office 2011/Microsoft Document Connection.app
/Applications/Microsoft Office 2011/Microsoft Excel.app
/Applications/Microsoft Office 2011/Microsoft Outlook.app
/Applications/Microsoft Office 2011/Microsoft PowerPoint.app
/Applications/Microsoft Office 2011/Microsoft Word.app
/Applications/MindNode Pro.app
/Applications/Moom.app
/Applications/Numbers.app
/Applications/OneDrive.app
/Applications/Pages.app
/Applications/Parallels Desktop.app
/Applications/Path Finder.app
/Applications/Pochade.app
/Applications/Reeder.app
/Applications/RSS Notifier.app
/Applications/ScreenFlow.app
/Applications/SiteSucker.app
/Applications/Sketch.app
/Applications/Skype.app
/Applications/Slack.app
/Applications/Soulver.app
/Applications/Spotify.app
/Applications/Steam.app
/Applications/SubEthaEdit.app
/Applications/Sublime Text.app
/Applications/TextExpander.app
/Applications/The Hit List.app
/Applications/Transmission.app
/Applications/Transmit.app
/Applications/Tunnelblick.app
/Applications/Tweetbot.app
/Applications/Ultra Character Map.app
/Applications/VirtualBox.app
/Applications/Viscosity.app
/Applications/VisualJSON.app
/Applications/VLC.app
/Applications/VMware Fusion.app
/Applications/Wunderlist.app
/Applications/Xcode.app
/Applications/xScope.localized/xScope.app
84 applications affected

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment