summaryrefslogtreecommitdiff
path: root/priv
diff options
context:
space:
mode:
Diffstat (limited to 'priv')
-rwxr-xr-xpriv/rebar7
1 files changed, 6 insertions, 1 deletions
diff --git a/priv/rebar b/priv/rebar
index 198f20d..83e5c80 100755
--- a/priv/rebar
+++ b/priv/rebar
@@ -29,4 +29,9 @@
-include_lib("rebar/include/rebar.hrl").
main(Args) ->
- rebar_core:run(Args).
+ case rebar_core:run(Args) of
+ ok ->
+ ok;
+ _ ->
+ halt(1)
+ end.