Merge pull request #747 from cdrage/update-cluster-script

Exit 1 not Exit 0
This commit is contained in:
Charlie Drage 2017-08-04 11:21:03 -04:00 committed by GitHub
commit 745946113b

View File

@ -8,17 +8,17 @@
# Check requirements!
if ! hash go 2>/dev/null; then
echo "ERROR: go required"
exit 0
exit 1
fi
if ! hash docker 2>/dev/null; then
echo "ERROR: docker required"
exit 0
exit 1
fi
if ! hash kubectl 2>/dev/null; then
echo "ERROR: kubectl required"
exit 0
exit 1
fi
# First off, we have to compile the latest binary