Created
September 18, 2014 11:04
-
-
Save andreacremaschi/cf603046e649b4c7f0c0 to your computer and use it in GitHub Desktop.
Xcode build scripts
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
APP_BUILD_DIR="$TARGET_BUILD_DIR" | |
# CODE_SIGN_CMD="codesign --sign \"$CODE_SIGN_IDENTITY\" --force --verbose=4 {} --keychain enterpriseprogram.keychain" | |
echo "Signing all digital signature stack libraries with identity: '$CODE_SIGN_IDENTITY'" | |
echo "Contents folder path: $APP_BUILD_DIR" | |
echo "Signing files:" | |
find $APP_BUILD_DIR -iname "*.dylib" -exec codesign --sign "$CODE_SIGN_IDENTITY" --force --verbose=4 {} --keychain enterpriseprogram.keychain \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment