mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
564 B
15 lines
564 B
#! /bin/bash |
|
APP_NAME="release/ErsatzTV.app" |
|
ENTITLEMENTS="scripts/macOS/ErsatzTV.entitlements" |
|
SIGNING_IDENTITY="C3BBCFB2D6851FF0DCA6CAC06A3EF1ECE71F9FFF" |
|
|
|
find "$APP_NAME/Contents/MacOS/"|while read fname; do |
|
if [[ -f $fname ]]; then |
|
echo "[INFO] Signing $fname" |
|
codesign --force --timestamp --options=runtime --entitlements "$ENTITLEMENTS" --sign "$SIGNING_IDENTITY" "$fname" |
|
fi |
|
done |
|
|
|
echo "[INFO] Signing app file" |
|
|
|
codesign --force --timestamp --options=runtime --entitlements "$ENTITLEMENTS" --sign "$SIGNING_IDENTITY" "$APP_NAME"
|
|
|