aboutsummaryrefslogtreecommitdiff
path: root/travis
diff options
context:
space:
mode:
authorMichael Stapelberg <stapelberg@users.noreply.github.com>2019-03-19 09:49:59 +0100
committerGitHub <noreply@github.com>2019-03-19 09:49:59 +0100
commit9bd2224520741c743759b81c26b7a65ecf0af6fe (patch)
tree68e82602bd46261772337e3f68e4184db48b3062 /travis
parent0cae9b236b45de780d0008e5f4bd09859d82c118 (diff)
downloadi3-9bd2224520741c743759b81c26b7a65ecf0af6fe.tar.gz
i3-9bd2224520741c743759b81c26b7a65ecf0af6fe.zip
travis: remove deprecated docker login -e flag (#3651)
Diffstat (limited to 'travis')
-rwxr-xr-xtravis/docker-build-and-push.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/travis/docker-build-and-push.sh b/travis/docker-build-and-push.sh
index 9b654a84..686b81b0 100755
--- a/travis/docker-build-and-push.sh
+++ b/travis/docker-build-and-push.sh
@@ -15,6 +15,6 @@ docker build --pull --no-cache --rm -t=${BASENAME} -f ${DOCKERFILE} .
# the login+push step when the variable isn’t set.
if [ -n "${DOCKER_PASS}" ]
then
- docker login -e ${DOCKER_EMAIL} -u ${DOCKER_USER} -p ${DOCKER_PASS}
+ docker login -u ${DOCKER_USER} -p ${DOCKER_PASS}
docker push ${BASENAME}
fi