From 7df2db746c8f89af86086e664933899e4926fe69 Mon Sep 17 00:00:00 2001 From: James Westby Date: Mon, 26 Jun 2017 10:17:29 +0100 Subject: [PATCH] Fix arguments to `gcloud docker` gcloud became more strict about separating gcloud arguments from docker arguments, and is now throwing an error failing the build https://travis-ci.org/bitnami/minideb/jobs/246281633#L5140 Use `--` to separate the arguments. --- pushall | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pushall b/pushall index c5a842b..96dd4a8 100755 --- a/pushall +++ b/pushall @@ -29,5 +29,5 @@ fi for DIST in $DISTS; do docker push $BASENAME:$DIST docker push $QUAY_BASENAME:$DIST - gcloud docker push $GCR_BASENAME:$DIST + gcloud docker -- push $GCR_BASENAME:$DIST done