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.
This commit is contained in:
James Westby
2017-06-26 10:17:29 +01:00
committed by James Westby
parent fad19490cb
commit 7df2db746c
+1 -1
View File
@@ -29,5 +29,5 @@ fi
for DIST in $DISTS; do for DIST in $DISTS; do
docker push $BASENAME:$DIST docker push $BASENAME:$DIST
docker push $QUAY_BASENAME:$DIST docker push $QUAY_BASENAME:$DIST
gcloud docker push $GCR_BASENAME:$DIST gcloud docker -- push $GCR_BASENAME:$DIST
done done