summaryrefslogtreecommitdiff
path: root/src/rebar_core.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/rebar_core.erl')
-rw-r--r--src/rebar_core.erl5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/rebar_core.erl b/src/rebar_core.erl
index e8b4e57..f8eb6f5 100644
--- a/src/rebar_core.erl
+++ b/src/rebar_core.erl
@@ -453,10 +453,11 @@ execute(Command, Modules, Config, ModuleFile) ->
?FAIL;
{Module, {error, _} = Other} ->
?ABORT("~p failed while processing ~s in module ~s: ~s\n",
- [Command, Dir, Module, io_lib:print(Other, 1,80,-1)]);
+ [Command, Dir, Module,
+ io_lib:print(Other, 1, 80, -1)]);
Other ->
?ABORT("~p failed while processing ~s: ~s\n",
- [Command, Dir, io_lib:print(Other, 1,80,-1)])
+ [Command, Dir, io_lib:print(Other, 1, 80, -1)])
end
end.