summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2015-03-12 16:35:57 -0500
committerTristan Sloughter <t@crashfast.com>2015-03-12 16:35:57 -0500
commitae7fe65a75a2d8c4276f9bc057d4917bc6fb88b1 (patch)
tree7c6a0f8e651b794e0d3622761f1bd2fb4ba304e8
parentebb4461f8720ba16c98277572a5489a776657465 (diff)
halt with 0 on successful run
-rw-r--r--src/rebar3.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar3.erl b/src/rebar3.erl
index 1b840cb..cb02daa 100644
--- a/src/rebar3.erl
+++ b/src/rebar3.erl
@@ -45,7 +45,7 @@
main(Args) ->
case catch(run(Args)) of
{ok, _State} ->
- ok;
+ erlang:halt(0);
rebar_abort ->
erlang:halt(1);
{error, rebar_abort} ->