Skip to content

Instantly share code, notes, and snippets.

@cmittendorf
Last active August 29, 2015 14:04
Show Gist options
  • Save cmittendorf/c9cf71adfc7aeb4bc413 to your computer and use it in GitHub Desktop.
Save cmittendorf/c9cf71adfc7aeb4bc413 to your computer and use it in GitHub Desktop.
Show codesign information for an application. You may download a signed (of course) version here: http://h1152756.serverkompetenz.net/SharedStuff/Show%20CodeSign%20Information.zip
on open theFiles
repeat with aFile in theFiles
set appPath to POSIX path of aFile
set codeSignInformation to do shell script "codesign -vd '" & appPath & "' 2>&1"
display dialog codeSignInformation with title ("codesign -vd " & appPath) buttons {"Ok"} default button 1
end repeat
end open
on run
open (choose file with multiple selections allowed)
end run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment