aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/build_and_push.sh
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2022-11-27 12:41:09 +0100
committerivarlovlie <git@ivarlovlie.no>2022-11-27 12:41:09 +0100
commit16c6300752f228bbf036b439ecfbcbd96e9b4d16 (patch)
treeac7d446305e0d5d4b8c842d6ba5eb813495f3539 /code/api/build_and_push.sh
parentaf5d92c1385d76a6470831d61e811c6afd7c76e2 (diff)
downloadgreatoffice-16c6300752f228bbf036b439ecfbcbd96e9b4d16.tar.xz
greatoffice-16c6300752f228bbf036b439ecfbcbd96e9b4d16.zip
feat: Small changes
Diffstat (limited to 'code/api/build_and_push.sh')
-rwxr-xr-xcode/api/build_and_push.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/api/build_and_push.sh b/code/api/build_and_push.sh
index 8aaff38..163d7f3 100755
--- a/code/api/build_and_push.sh
+++ b/code/api/build_and_push.sh
@@ -7,7 +7,7 @@ CURRENT_DEV_VERSION_INT=${CURRENT_DEV_VERSION//[!0-9]/}
CURRENT_VERSION=$(cat .version)
CURRENT_VERSION_INT=${CURRENT_VERSION//[!0-9]/}
if [ ${1-prod} == "dev" ]; then
- NEW_VERSION="v$((CURRENT_DEV_VERSION_INT + 1))dev"
+ NEW_VERSION="v$((CURRENT_DEV_VERSION_INT + 1))-dev"
OLD_VERSION=$CURRENT_DEV_VERSION
else
NEW_VERSION="v$((CURRENT_VERSION_INT + 1))"