diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-02-21 12:15:36 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-02-21 12:15:36 -0500 |
commit | b99ba6f5acc4056fe1c8beb917ef71f81aecf496 (patch) | |
tree | e1ee89256ef7f75459bc769588a465ca2c0b7c8e /build.sh | |
parent | 2370a873511009c1f5ab6797921a76ecb4e8a168 (diff) | |
download | docker-base-b99ba6f5acc4056fe1c8beb917ef71f81aecf496.tar.gz |
Move start of debug output past authenication block
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |