aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/build_and_push.sh
diff options
context:
space:
mode:
Diffstat (limited to 'code/api/build_and_push.sh')
-rwxr-xr-xcode/api/build_and_push.sh2
1 files changed, 0 insertions, 2 deletions
diff --git a/code/api/build_and_push.sh b/code/api/build_and_push.sh
index 163d7f3..820533a 100755
--- a/code/api/build_and_push.sh
+++ b/code/api/build_and_push.sh
@@ -8,10 +8,8 @@ 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"
- OLD_VERSION=$CURRENT_DEV_VERSION
else
NEW_VERSION="v$((CURRENT_VERSION_INT + 1))"
- OLD_VERSION=$CURRENT_VERSION
fi
IMAGE_NAME="greatoffice/server"
HUB_NAME="dr.ivar.systems/greatoffice/server"