summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index d57a03c..35f2bdc 100755
--- a/build.sh
+++ b/build.sh
@@ -10,7 +10,6 @@ if [[ -z ${PROJECT_VERSION} ]]; then
exit 1
fi
-set -x
read \
PROJECT_VERSION_MAJOR \
PROJECT_VERSION_MINOR \
@@ -31,6 +30,7 @@ case "${HUB}" in
docker login
;;
esac
+set -x
TAGS+=( "-t ${PROJECT}:${PROJECT_VERSION}" )
is_tag_latest=$([[ -f LATEST ]] && [[ $(<LATEST) == ${PROJECT_VERSION} ]] && echo yes)