Skip to content

Commit

Permalink
docker-publish: add back DOCKER_EMAIL
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanleiby committed Sep 20, 2017
1 parent c6b4c45 commit a1f99c5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions circleci/docker-publish
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ check_hub_vars() {
# User supplied args
if [[ -z $DOCKER_USER ]]; then echo "Missing arg1 DOCKER_USER" && exit 1; fi
if [[ -z $DOCKER_PASS ]]; then echo "Missing arg2 DOCKER_PASS" && exit 1; fi
if [[ -z $DOCKER_EMAIL ]]; then echo "Missing arg3 DOCKER_EMAIL" && exit 1; fi
if [[ -z $ORG ]]; then echo "Missing arg4 ORG" && exit 1; fi
}

Expand Down Expand Up @@ -46,6 +47,7 @@ SHORT_SHA=${CIRCLE_SHA1:0:7}

DOCKER_USER=$1
DOCKER_PASS=$2
DOCKER_EMAIL=$3 # this arg is unused; TODO: Migration to remove it from other repos which call ci-scripts
ORG=$4

echo "Docker version..."
Expand Down

0 comments on commit a1f99c5

Please sign in to comment.