Merge pull request #23504 from mml/mb

Stop swallowing stdout and stderr when we check for the staging bucket.
pull/6/head
Alex Robinson 2016-03-31 14:39:46 -07:00
commit 7135754f93
1 changed files with 1 additions and 1 deletions

View File

@ -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