mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 11:09:55 +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
|
shift
|
||||||
$NODETOOL eval "$1"
|
$NODETOOL eval "$1"
|
||||||
|
ES_EVAL=$?
|
||||||
|
if [ "$ES_EVAL" -ne 0 ]; then
|
||||||
|
exit $ES_EVAL
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
remote_console)
|
remote_console)
|
||||||
|
|
|
@ -245,6 +245,10 @@ case "$1" in
|
||||||
|
|
||||||
shift
|
shift
|
||||||
$NODETOOL eval "$1"
|
$NODETOOL eval "$1"
|
||||||
|
ES_EVAL=$?
|
||||||
|
if [ "$ES_EVAL" -ne 0 ]; then
|
||||||
|
exit $ES_EVAL
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
remote_console)
|
remote_console)
|
||||||
|
|
Loading…
Reference in a new issue