Created
January 1, 2020 22:07
-
-
Save Bogdanp/70e02379321853baaec06847505cbbf3 to your computer and use it in GitHub Desktop.
Codesigning a Racket executable for inclusion in a macOS app
This file contains 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
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