Updated release config file to check for gcloud.

This commit is contained in:
Brendan Burns 2014-06-14 15:12:29 -07:00
parent c746dd8df5
commit b78e32b1ba

View File

@ -14,6 +14,11 @@
# A set of defaults for Kubernetes releases
if [ "$(which gcloud)" == "" ]; then
echo "Couldn't find gcloud in PATH"
exit 1
fi
PROJECT=$(gcloud config list project | tail -n 1 | cut -f 3 -d ' ')
if which md5 > /dev/null; then