Skip to content

Commit

Permalink
fix: prevent error message for docker login
Browse files Browse the repository at this point in the history
  • Loading branch information
DaRaFF committed Apr 18, 2018
1 parent e67276b commit bf04ebc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/tag-publish-docker-image
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ hasDockerTags () { [ "x$DOCKER_TAGS" != "x" ]; }
dockerLogin () {
log " Executing: docker login -u=**** -p=****"
execute \
"docker login -u=\"$DOCKER_USERNAME\" -p=\"$DOCKER_PASSWORD\""
"echo $DOCKER_PASSWORD | docker login -u=\"$DOCKER_USERNAME\" --password-stdin 1>/dev/null"
}

dockerTag () {
Expand Down

0 comments on commit bf04ebc

Please sign in to comment.