Skip to content

Commit 5cf15e8

Browse files
committed
fix for non bash run
1 parent a8d8eac commit 5cf15e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ BRANCH=${BRANCH:-"$(git rev-parse --abbrev-ref HEAD)"}
1919
$(dirname $0)/docker.sh
2020

2121
# check branch and set version
22-
if [ "${BRANCH}" == "master" ]; then
22+
if [ "${BRANCH}" = "master" ]; then
2323
VERSION=${VERSION:-"2.0.3 2.0 2 latest"}
24-
elif [ "${BRANCH}" == "develop" ]; then
24+
elif [ "${BRANCH}" = "develop" ]; then
2525
VERSION="develop"
2626
else
2727
exit 0

0 commit comments

Comments
 (0)