Browse Source

Use relative entitlements file path to file

pull/438/head
ionite34 11 months ago
parent
commit
bf8692df8b
No known key found for this signature in database
GPG Key ID: B3404C5F3827849B
  1. 4
      Build/codesign_macos.sh

4
Build/codesign_macos.sh

@ -20,8 +20,10 @@ if [ -n "$CI" ]; then
fi
# Sign all files
PARENT_PATH=$( cd "$(dirname "${BASH_SOURCE[0]}")" || return ; pwd -P )
ENTITLEMENTS="$PARENT_PATH/AppEntitlements.entitlements"
ENTITLEMENTS="AppEntitlements.entitlements"
echo "Using entitlements file: $ENTITLEMENTS"
find "$1/Contents/MacOS/"|while read fname; do
if [[ -f $fname ]]; then

Loading…
Cancel
Save