diff options
Diffstat (limited to 'src/rebar_base_compiler.erl')
-rw-r--r-- | src/rebar_base_compiler.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rebar_base_compiler.erl b/src/rebar_base_compiler.erl index 10a495d..b4308e5 100644 --- a/src/rebar_base_compiler.erl +++ b/src/rebar_base_compiler.erl @@ -149,7 +149,7 @@ compile_queue(Pids, Targets) -> {fail, Error} -> ?DEBUG("Worker compilation failed: ~p\n", [Error]), - ?FAIL; + ?ABORT; {compiled, Source} -> ?CONSOLE("Compiled ~s\n", [Source]), @@ -166,7 +166,7 @@ compile_queue(Pids, Targets) -> {'DOWN', _Mref, _, _Pid, Info} -> ?DEBUG("Worker failed: ~p\n", [Info]), - ?FAIL + ?ABORT end. compile_worker(QueuePid, Config, CompileFn) -> |