From ae7fe65a75a2d8c4276f9bc057d4917bc6fb88b1 Mon Sep 17 00:00:00 2001 From: Tristan Sloughter Date: Thu, 12 Mar 2015 16:35:57 -0500 Subject: halt with 0 on successful run --- src/rebar3.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} -> -- cgit v1.1