Skip to content

Commit

Permalink
fix: unbound variable
Browse files Browse the repository at this point in the history
  • Loading branch information
v1v committed Dec 30, 2024
1 parent 2e28915 commit d2cc67c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .buildkite/scripts/lifecycle/post_command.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ fi

if [[ $BUILDKITE_COMMAND_EXIT_STATUS -ne 0 ]]; then
# If the slack team environment variable is set, ping the team in slack
if [ -n "$PING_SLACK_TEAM" ]; then
if [ -n "${PING_SLACK_TEAM:-}" ]; then
ts-node .buildkite/scripts/lifecycle/ping_slack.ts
fi
fi

0 comments on commit d2cc67c

Please sign in to comment.