Merge pull request #6241 from ixdy/fix-build

Add missing } to fix cluster/gce/util.sh
pull/6/head
Jeff Grafton 2015-03-31 14:05:58 -07:00
commit d95f744eea
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ function verify-prereqs {
for cmd in gcloud gsutil; do
if ! which "${cmd}" >/dev/null; then
local resp
if [[ "${KUBE_PROMPT_FOR_UPDATE" == "y" ]]; then
if [[ "${KUBE_PROMPT_FOR_UPDATE}" == "y" ]]; then
echo "Can't find ${cmd} in PATH. Do you wish to install the Google Cloud SDK? [Y/n]"
read resp
else