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.
10 lines
385 B
10 lines
385 B
#! /bin/bash |
|
|
|
SCRIPT_FOLDER=$(dirname ${BASH_SOURCE[0]}) |
|
REPO_ROOT=$(realpath "$SCRIPT_FOLDER/../..") |
|
|
|
APP_NAME="$REPO_ROOT/ErsatzTV.app" |
|
ENTITLEMENTS="$SCRIPT_FOLDER/ErsatzTV.entitlements" |
|
SIGNING_IDENTITY="C3BBCFB2D6851FF0DCA6CAC06A3EF1ECE71F9FFF" |
|
|
|
codesign --force --verbose --timestamp --options=runtime --entitlements "$ENTITLEMENTS" --sign "$SIGNING_IDENTITY" --deep "$APP_NAME"
|
|
|