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:
parent
2762759935
commit
8852702a00
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue