Skip to content

Commit

Permalink
Temporarily disable code signing on macOS for Pharo
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed Jan 31, 2018
1 parent 0255e6d commit c6b29d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deploy/pack-vm.sh
Expand Up @@ -69,9 +69,9 @@ elif [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then
elif [[ "${FLAVOR}" == "pharo"* ]]; then
path_cer="${DEPLOY_DIR}/pharo/pharo.cer"
path_p12="${DEPLOY_DIR}/pharo/pharo.p12"
openssl aes-256-cbc -k "${PHARO_SIGN_PASSWORD}" -in "${path_cer}.enc" -out "${path_cer}" -d
openssl aes-256-cbc -k "${PHARO_SIGN_PASSWORD}" -in "${path_p12}.enc" -out "${path_p12}" -d
macos_codesign "${APP_DIR}" "${path_cer}" "${path_p12}" "${PHARO_CERT_PASSWORD}" "${PHARO_SIGN_IDENTITY}"
# openssl aes-256-cbc -k "${PHARO_SIGN_PASSWORD}" -in "${path_cer}.enc" -out "${path_cer}" -d
# openssl aes-256-cbc -k "${PHARO_SIGN_PASSWORD}" -in "${path_p12}.enc" -out "${path_p12}" -d
# macos_codesign "${APP_DIR}" "${path_cer}" "${path_p12}" "${PHARO_CERT_PASSWORD}" "${PHARO_SIGN_IDENTITY}"
elif [[ "${FLAVOR}" == "newspeak"* ]]; then
NEW_APP_DIR="${PRODUCTS_DIR}/Newspeak.app"
mv "${APP_DIR}" "${NEW_APP_DIR}"
Expand Down

0 comments on commit c6b29d8

Please sign in to comment.