Attempt code signing fix

This commit is contained in:
FriwiDev 2022-02-24 21:52:48 +01:00
parent ebae1ca762
commit b0596832ca

View File

@ -2,7 +2,7 @@
if [ $# -lt 2 ] if [ $# -lt 2 ]
then then
echo "Usage: ./macosxcodesign.sh <path> <certname> [<bundleid> <appleid> <applepwd>]" echo "Usage: ./macosxcodesign.sh <path> <certname>"
echo "" echo ""
echo "path: the absolute(!) target path" echo "path: the absolute(!) target path"
echo "certname: the apple signing certificate name. Something like \"Developer ID Application: xxx\"" echo "certname: the apple signing certificate name. Something like \"Developer ID Application: xxx\""
@ -12,9 +12,9 @@ fi
#Set workdir local (for plist files) #Set workdir local (for plist files)
cd "$( dirname "$0" )" cd "$( dirname "$0" )"
APP_DIR=$1/bin APP_DIR=$1/bin
APP_NAME=cef_app.app APP_NAME=jcef_app.app
FRAMEWORKS_DIR=Contents/Frameworks FRAMEWORKS_DIR=Contents/Frameworks
FRAMEWORK_NAME=Chromium Embedded Framework.framework FRAMEWORK_NAME=Chromium\ Embedded\ Framework.framework
ENTITLEMENTS_HELPER=entitlements/entitlements-helper.plist ENTITLEMENTS_HELPER=entitlements/entitlements-helper.plist
ENTITLEMENTS_BROWSER=entitlements/entitlements-browser.plist ENTITLEMENTS_BROWSER=entitlements/entitlements-browser.plist