diff options
author | Tristan Sloughter <t@crashfast.com> | 2015-01-19 18:17:11 -0600 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2015-01-19 18:17:22 -0600 |
commit | daf346a4d08a3cf8eefcdedba39ddc070a0d6003 (patch) | |
tree | 8a86bf3c83d001498c456956f6ea672d04a447a3 | |
parent | 488d70d2f249835a61053469dcc6d8dd89a77f96 (diff) |
remove extra newline in clean
-rw-r--r-- | src/rebar_prv_clean.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_prv_clean.erl b/src/rebar_prv_clean.erl index 6d14cdb..ccd126b 100644 --- a/src/rebar_prv_clean.erl +++ b/src/rebar_prv_clean.erl @@ -69,7 +69,7 @@ clean_apps(State, Apps) -> C = rebar_config:consult(AppDir), S = rebar_state:new(State, C, AppDir), - ?INFO("Cleaning out ~s...~n", [rebar_app_info:name(AppInfo)]), + ?INFO("Cleaning out ~s...", [rebar_app_info:name(AppInfo)]), %% Legacy hook support rebar_hooks:run_compile_hooks(AppDir, pre_hooks, clean, S), rebar_erlc_compiler:clean(State, ec_cnv:to_list(rebar_app_info:dir(AppInfo))), |