Merge pull request #111 from brendanburns/master

Update release config file to check for gcloud.
This commit is contained in:
Joe Beda 2014-06-14 15:13:48 -07:00
commit 860ed8cd4c

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