Skip to content

Instantly share code, notes, and snippets.

@Bogdanp
Created January 1, 2020 22:07
Show Gist options
  • Save Bogdanp/70e02379321853baaec06847505cbbf3 to your computer and use it in GitHub Desktop.
Save Bogdanp/70e02379321853baaec06847505cbbf3 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