mirror of
https://github.com/correl/rebar.git
synced 2024-11-14 11:09:35 +00:00
Exit with proper status code if 'eval' fails
This commit is contained in:
parent
78379493d4
commit
0d5416218b
2 changed files with 8 additions and 0 deletions
|
@ -304,6 +304,10 @@ case "$1" in
|
|||
|
||||
shift
|
||||
$NODETOOL eval "$1"
|
||||
ES_EVAL=$?
|
||||
if [ "$ES_EVAL" -ne 0 ]; then
|
||||
exit $ES_EVAL
|
||||
fi
|
||||
;;
|
||||
|
||||
remote_console)
|
||||
|
|
|
@ -245,6 +245,10 @@ case "$1" in
|
|||
|
||||
shift
|
||||
$NODETOOL eval "$1"
|
||||
ES_EVAL=$?
|
||||
if [ "$ES_EVAL" -ne 0 ]; then
|
||||
exit $ES_EVAL
|
||||
fi
|
||||
;;
|
||||
|
||||
remote_console)
|
||||
|
|
Loading…
Reference in a new issue