Skip to content

Commit 2b70943

Browse files
committed
Add quotes around env var
1 parent 2863926 commit 2b70943

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ yarn global add now@11.0.6
1111
# multiple orgs, so we need a separate deployment for each org
1212
for org in "${orgs[@]}"; do
1313
app_name="$org-bot"
14-
app_url=$(now --npm --name=$app_name -T $team -t $token --public -e PRIVATE_KEY="@probot-$org-private-key" -e APP_ID="@probot-$org-app-id" -e WEBHOOK_SECRET="@probot-$org-webhook-secret" -e BUILDKITE_TOKEN=@buildkite-token -e REPO_RELATIONSHIPS=$REPO_RELATIONSHIPS -e NODE_ENV="production")
14+
app_url=$(now --npm --name=$app_name -T $team -t $token --public -e PRIVATE_KEY="@probot-$org-private-key" -e APP_ID="@probot-$org-app-id" -e WEBHOOK_SECRET="@probot-$org-webhook-secret" -e BUILDKITE_TOKEN=@buildkite-token -e REPO_RELATIONSHIPS="$REPO_RELATIONSHIPS" -e NODE_ENV="production")
1515
now scale $app_url sfo 1 -T $team --token=$token
1616
now alias set $app_url $app_name -T $team -t $token
1717
now rm $app_name --safe -T $team -t $token -y || true

0 commit comments

Comments
 (0)