From a1f99c5d262e4888f7a5737ea812615610ce250b Mon Sep 17 00:00:00 2001 From: Nathan Leiby Date: Wed, 20 Sep 2017 11:50:39 -0700 Subject: [PATCH] docker-publish: add back DOCKER_EMAIL --- circleci/docker-publish | 2 ++ 1 file changed, 2 insertions(+) diff --git a/circleci/docker-publish b/circleci/docker-publish index 7fb3d4c..9aceb90 100755 --- a/circleci/docker-publish +++ b/circleci/docker-publish @@ -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 } @@ -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..."