diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-02-21 12:17:07 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-02-21 12:17:07 -0500 |
commit | 73aed5bac6dd726201ede04a4c2f3d59c36cf80b (patch) | |
tree | b9d40024bd876310cca90091e1d103dd5d6b45c4 /build.sh | |
parent | 9ea82263cbcff0a5087e17d5768a15d53c554154 (diff) | |
download | docker-pipeline-73aed5bac6dd726201ede04a4c2f3d59c36cf80b.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=${3:-astroconda} PROJECT=${HUB}/pipeline PROJECT_VERSION="${1}" @@ -43,6 +42,7 @@ case "${HUB}" in docker login ;; esac +set -x TAGS+=( "-t ${PROJECT}:${image_tag}" ) PIPELINE="${PROJECT_VERSION}" |