Commit 7135754f authored by Alex Robinson's avatar Alex Robinson

Merge pull request #23504 from mml/mb

Stop swallowing stdout and stderr when we check for the staging bucket.
parents b60ef6f0 300855c5
......@@ -224,7 +224,7 @@ function upload-server-tars() {
local staging_bucket="gs://kubernetes-staging-${project_hash}${suffix}"
# Ensure the buckets are created
if ! gsutil ls "${staging_bucket}" > /dev/null 2>&1 ; then
if ! gsutil ls "${staging_bucket}" ; then
echo "Creating ${staging_bucket}"
gsutil mb -l "${region}" "${staging_bucket}"
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment