Skip to content

Instantly share code, notes, and snippets.

@aymanosman
Forked from Bogdanp/codesign.sh
Created January 3, 2020 09:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aymanosman/4b778ddef2288840636078fb6feb9b5f to your computer and use it in GitHub Desktop.
Save aymanosman/4b778ddef2288840636078fb6feb9b5f to your computer and use it in GitHub Desktop.
Codesigning a Racket executable for inclusion in a macOS app
codesign --force \
--timestamp \
--entitlements="$CODE_SIGN_ENTITLEMENTS" \
--sign="$EXPANDED_CODE_SIGN_IDENTITY_NAME" \
-o runtime \
"${PROJECT_DIR}/Resources/core/lib/Racket.framework/Versions/7.5_3m/Racket"
codesign --force \
--timestamp \
--entitlements="$CODE_SIGN_ENTITLEMENTS" \
--sign="$EXPANDED_CODE_SIGN_IDENTITY_NAME" \
-o runtime \
"${PROJECT_DIR}/Resources/core/bin/remember-core"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment