From 52dd55c5ec8897f97648d70e18167c66ccd559d0 Mon Sep 17 00:00:00 2001 From: Zach Loafman Date: Tue, 31 Mar 2015 16:50:31 -0700 Subject: [PATCH] Fix gke/util.sh --- cluster/gke/util.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cluster/gke/util.sh b/cluster/gke/util.sh index dab49cfeed4ba..465c9d80d49ec 100755 --- a/cluster/gke/util.sh +++ b/cluster/gke/util.sh @@ -71,7 +71,7 @@ function test-build-release() { function verify-prereqs() { if ! which gcloud >/dev/null; then local resp - if [[ "${KUBE_PROMPT_FOR_UPDATE" == "y" ]]; then + if [[ "${KUBE_PROMPT_FOR_UPDATE}" == "y" ]]; then echo "Can't find gcloud in PATH. Do you wish to install the Google Cloud SDK? [Y/n]" read resp else @@ -85,7 +85,7 @@ function verify-prereqs() { echo "SDK can be downloaded from https://cloud.google.com/sdk/." exit 1 fi - fi + fi # update and install components as needed if [[ "${KUBE_PROMPT_FOR_UPDATE}" != "y" ]]; then gcloud_prompt="-q"