Skip to content

Commit 094b6ea

Browse files
committed
actually fix bash
1 parent 1a5b1b7 commit 094b6ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.ci/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ VERSION_QUALIFIER=$(cat config/version-qualifier.txt)
2727
# Branch: BRANCH env var > Buildkite's BUILDKITE_BRANCH var > minor version
2828
BRANCH=${BRANCH:-${BUILDKITE_BRANCH:-${STACK_VERSION%.*}}}
2929

30-
if [[ "$BRANCH" = "main" && "$WORKFLOW" = "staging" && [-z "$VERSION_QUALIFIER"]]]; then
30+
if [[ "$BRANCH" = "main" && "$WORKFLOW" = "staging" && "$VERSION_QUALIFIER" = "" ]]; then
3131
echo "No staging build for the main branch - skipping"
3232
exit 0
3333
fi

0 commit comments

Comments
 (0)