Created
March 24, 2020 17:21
-
-
Save martinbowling/517fc5bb4f8f9b0751d3edaeb655c4a0 to your computer and use it in GitHub Desktop.
electron app signing script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Name of your app. | |
APP="YourApp" | |
# The path of your app to sign. | |
APP_PATH="/path/to/YourApp.app" | |
# The path to the location you want to put the signed package. | |
RESULT_PATH="~/Desktop/$APP.pkg" | |
# The name of certificates you requested. | |
APP_KEY="3rd Party Mac Developer Application: Company Name (APPIDENTITY)" | |
INSTALLER_KEY="3rd Party Mac Developer Installer: Company Name (APPIDENTITY)" | |
# The path of your plist files. | |
CHILD_PLIST="/path/to/child.plist" | |
PARENT_PLIST="/path/to/parent.plist" | |
LOGINHELPER_PLIST="/path/to/loginhelper.plist" | |
FRAMEWORKS_PATH="$APP_PATH/Contents/Frameworks" | |
codesign -s "$APP_KEY" -f --entitlements "$CHILD_PLIST" "$FRAMEWORKS_PATH/Electron Framework.framework/Versions/A/Electron Framework" | |
codesign -s "$APP_KEY" -f --entitlements "$CHILD_PLIST" "$FRAMEWORKS_PATH/Electron Framework.framework/Versions/A/Libraries/libffmpeg.dylib" | |
codesign -s "$APP_KEY" -f --entitlements "$CHILD_PLIST" "$FRAMEWORKS_PATH/Electron Framework.framework/Versions/A/Libraries/libnode.dylib" | |
codesign -s "$APP_KEY" -f --entitlements "$CHILD_PLIST" "$FRAMEWORKS_PATH/Electron Framework.framework" | |
codesign -s "$APP_KEY" -f --entitlements "$CHILD_PLIST" "$FRAMEWORKS_PATH/$APP Helper.app/Contents/MacOS/$APP Helper" | |
codesign -s "$APP_KEY" -f --entitlements "$CHILD_PLIST" "$FRAMEWORKS_PATH/$APP Helper.app/" | |
codesign -s "$APP_KEY" -f --entitlements "$LOGINHELPER_PLIST" "$APP_PATH/Contents/Library/LoginItems/$APP Login Helper.app/Contents/MacOS/$APP Login Helper" | |
codesign -s "$APP_KEY" -f --entitlements "$LOGINHELPER_PLIST" "$APP_PATH/Contents/Library/LoginItems/$APP Login Helper.app/" | |
codesign -s "$APP_KEY" -f --entitlements "$CHILD_PLIST" "$APP_PATH/Contents/MacOS/$APP" | |
codesign -s "$APP_KEY" -f --entitlements "$PARENT_PLIST" "$APP_PATH" | |
productbuild --component "$APP_PATH" /Applications --sign "$INSTALLER_KEY" "$RESULT_PATH" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment