mirror of
https://github.com/bitnami/minideb.git
synced 2026-06-04 10:13:55 +08:00
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:
committed by
James Westby
parent
fad19490cb
commit
7df2db746c
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user