Skip to content

Commit 08e390d

Browse files
committed
fix(ci): fix release script (#10325)
1 parent 4a09ead commit 08e390d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci/scripts/release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip
4040
unzip -q awscliv2.zip && ./aws/install && mv /usr/local/bin/aws /bin/aws
4141

4242
echo "--- Update risingwave release version"
43-
if [[ -n "${BUILDKITE_TAG+x}" ]]; then
43+
if [[ -n "${BUILDKITE_TAG}" ]]; then
4444
toml set --toml-path Cargo.toml workspace.package.version ${BUILDKITE_TAG#*v}
4545
fi
4646

@@ -58,7 +58,7 @@ elif [[ -n "${BINARY_NAME+x}" ]]; then
5858
aws s3 cp risingwave-${BINARY_NAME}-x86_64-unknown-linux.tar.gz s3://risingwave-nightly-pre-built-binary
5959
fi
6060

61-
if [[ -n "${BUILDKITE_TAG+x}" ]]; then
61+
if [[ -n "${BUILDKITE_TAG}" ]]; then
6262
echo "--- Install gh cli"
6363
yum install -y dnf
6464
dnf install -y 'dnf-command(config-manager)'

0 commit comments

Comments
 (0)