summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2019-02-21 12:15:36 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2019-02-21 12:15:36 -0500
commitb99ba6f5acc4056fe1c8beb917ef71f81aecf496 (patch)
treee1ee89256ef7f75459bc769588a465ca2c0b7c8e /build.sh
parent2370a873511009c1f5ab6797921a76ecb4e8a168 (diff)
downloaddocker-base-b99ba6f5acc4056fe1c8beb917ef71f81aecf496.tar.gz
Move start of debug output past authenication block
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index a6094c5..15fc7d9 100755
--- a/build.sh
+++ b/build.sh
@@ -1,5 +1,4 @@
#!/bin/bash
-set -x
HUB=${2:-astroconda}
PROJECT=${HUB}/base
PROJECT_VERSION="${1}"
@@ -30,6 +29,7 @@ case "${HUB}" in
docker login
;;
esac
+set -x
TAGS+=( "-t ${PROJECT}:${PROJECT_VERSION}" )
is_tag_latest=$([[ -f LATEST ]] && [[ $(<LATEST) == ${PROJECT_VERSION} ]] && echo yes)