forked from LaconicNetwork/kompose
Exit 1 not Exit 0
Wrong exit value
This commit is contained in:
parent
3b59d9b615
commit
992dd53434
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user