summaryrefslogtreecommitdiff
path: root/src/rebar_prv_compile.erl
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2014-11-08 09:15:09 -0600
committerTristan Sloughter <t@crashfast.com>2014-11-08 09:15:09 -0600
commit1ff904f39a07416a6739bd97b8f94c504e1587d0 (patch)
tree31636216efcf35f2e907197745e50437f0ad0d0a /src/rebar_prv_compile.erl
parentfd9f88b98a554030c8cb285b918f416811f06d04 (diff)
handle throw by relx
Diffstat (limited to 'src/rebar_prv_compile.erl')
-rw-r--r--src/rebar_prv_compile.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_prv_compile.erl b/src/rebar_prv_compile.erl
index d80586d..5495cc9 100644
--- a/src/rebar_prv_compile.erl
+++ b/src/rebar_prv_compile.erl
@@ -76,7 +76,7 @@ build_apps(State, Apps) ->
end, Apps).
build(State, AppInfo) ->
- ?INFO("Compiling ~s~n", [rebar_app_info:name(AppInfo)]),
+ ?INFO("Compiling ~s", [rebar_app_info:name(AppInfo)]),
rebar_erlc_compiler:compile(State, ec_cnv:to_list(rebar_app_info:dir(AppInfo))),
{ok, AppInfo1} = rebar_otp_app:compile(State, AppInfo),
AppInfo1.