summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTuncer Ayaz <tuncer.ayaz@gmail.com>2012-01-13 18:18:51 +0100
committerTuncer Ayaz <tuncer.ayaz@gmail.com>2012-01-13 18:18:51 +0100
commitcab1671ea0a862c3f43ecde5acdafd0893f15d9e (patch)
treec495dc981b2f3aa76d2f85305e91f6e98bcaee1e
parent45555eb6ae7035a68b70343a57294da536e7795c (diff)
Add missing newline for logging code path update
-rw-r--r--src/rebar_deps.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_deps.erl b/src/rebar_deps.erl
index 9261e25..2085cf2 100644
--- a/src/rebar_deps.erl
+++ b/src/rebar_deps.erl
@@ -201,7 +201,7 @@ update_deps_code_path([Dep | Rest]) ->
{true, _} ->
Dir = filename:join(Dep#dep.dir, "ebin"),
ok = filelib:ensure_dir(filename:join(Dir, "dummy")),
- ?DEBUG("Adding ~s to code path", [Dir]),
+ ?DEBUG("Adding ~s to code path~n", [Dir]),
true = code:add_patha(Dir);
{false, _} ->
true