Skip to content

Instantly share code, notes, and snippets.

@vancluever
Created January 24, 2023 01:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vancluever/73ca17ced4864caf3d40589eec84486b to your computer and use it in GitHub Desktop.
Save vancluever/73ca17ced4864caf3d40589eec84486b to your computer and use it in GitHub Desktop.
MacOS Notarization Script
#!/usr/bin/env sh
spctl -a -vv "$1" && codesign --test-requirement="=notarized" --verify --verbose "$1" && codesign -dv --verbose=4 "$1"
@vancluever
Copy link
Author

Does notarization checks and then will give you various detail about the signature on an app/binary/etc. Should really be part of Finder but what can you do.

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