1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00

Fix bash error

This commit is contained in:
Ewout Prangsma 2018-02-27 12:03:11 +01:00
parent 2762759935
commit 8852702a00
No known key found for this signature in database
GPG key ID: 4DBAD380D93D0698

View file

@ -56,7 +56,7 @@ rules:
EOYAML
local code=$?
if (code != 0); then
if [ ! -z $code ]; then
exit $code
fi
}
@ -78,7 +78,7 @@ subjects:
EOYAML
local code=$?
if (code != 0); then
if [ ! -z $code ]; then
exit $code
fi
}