Mercurial > hg > sonic-annotator
view deploy/osx/sign.sh @ 384:c9b2dca061a6
Create package called static, rather than just having subdir
author | Chris Cannam |
---|---|
date | Fri, 05 Jun 2020 18:03:26 +0100 |
parents | 78af557445b2 |
children |
line wrap: on
line source
#!/bin/bash set -e exe="$1" if [ ! -f "$exe" ] || [ -n "$2" ]; then echo "Usage: $0 <executable>" echo " e.g. $0 my-program" exit 2 fi set -u entitlements=deploy/osx/Entitlements.plist codesign -s "Developer ID Application: Chris Cannam" -fv --options runtime --entitlements "$entitlements" "$exe"