Skip to content

Commit

Permalink
Fixed notarize script environment check
Browse files Browse the repository at this point in the history
  • Loading branch information
petergam committed Mar 28, 2024
1 parent 0f79ceb commit 292cc54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/notarize-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ APP_DIR="$RELEASE_DIR/macos"
APP_NAME="Halloy.app"
APP_PATH=$APP_DIR/$APP_NAME

environment=("MACOS_NOTARIZATION_APPLE_ID MACOS_NOTARIZATION_TEAM_ID MACOS_NOTARIZATION_PWD")
environment=("MACOS_NOTARIZATION_APPLE_ID" "MACOS_NOTARIZATION_TEAM_ID" "MACOS_NOTARIZATION_PWD")
for var in "${environment[@]}"; do
if [[ -z "${!var}" ]]; then
echo "Error: $var is not set"
Expand Down

0 comments on commit 292cc54

Please sign in to comment.