summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/rebar_hooks.erl2
-rw-r--r--src/rebar_utils.erl3
2 files changed, 3 insertions, 2 deletions
diff --git a/src/rebar_hooks.erl b/src/rebar_hooks.erl
index a1a363e..706d6b9 100644
--- a/src/rebar_hooks.erl
+++ b/src/rebar_hooks.erl
@@ -22,4 +22,4 @@ apply_hook(Dir, Env, {Arch, Command, Hook}) ->
end;
apply_hook(Dir, Env, {Command, Hook}) ->
Msg = lists:flatten(io_lib:format("Hook for ~p failed!~n", [Command])),
- rebar_utils:sh(Hook, [{cd, Dir}, {env, Env}, {abort_on_error, Msg}]).
+ rebar_utils:sh(Hook, [use_stdout, {cd, Dir}, {env, Env}, {abort_on_error, Msg}]).
diff --git a/src/rebar_utils.erl b/src/rebar_utils.erl
index b3ae9ff..ab5167f 100644
--- a/src/rebar_utils.erl
+++ b/src/rebar_utils.erl
@@ -314,7 +314,8 @@ expand_sh_flag(debug_and_abort_on_error) ->
expand_sh_flag(use_stdout) ->
{output_handler,
fun(Line, Acc) ->
- ?CONSOLE("~s", [Line]),
+ %% Line already has a newline so don't use ?CONSOLE which adds one
+ io:format("~s", [Line]),
[Line | Acc]
end};
expand_sh_flag({use_stdout, false}) ->