Skip to content

Commit

Permalink
Merge pull request kubernetes#6258 from zmerlynn/fix_gke_util
Browse files Browse the repository at this point in the history
Fix gke/util.sh
  • Loading branch information
zmerlynn committed Mar 31, 2015
2 parents 151b916 + 52dd55c commit 7094bad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cluster/gke/util.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down

0 comments on commit 7094bad

Please sign in to comment.