mirror of
https://github.com/correl/rebar.git
synced 2024-12-18 03:00:17 +00:00
Add missing newline for logging code path update
This commit is contained in:
parent
45555eb6ae
commit
cab1671ea0
1 changed files with 1 additions and 1 deletions
|
@ -201,7 +201,7 @@ update_deps_code_path([Dep | Rest]) ->
|
||||||
{true, _} ->
|
{true, _} ->
|
||||||
Dir = filename:join(Dep#dep.dir, "ebin"),
|
Dir = filename:join(Dep#dep.dir, "ebin"),
|
||||||
ok = filelib:ensure_dir(filename:join(Dir, "dummy")),
|
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);
|
true = code:add_patha(Dir);
|
||||||
{false, _} ->
|
{false, _} ->
|
||||||
true
|
true
|
||||||
|
|
Loading…
Reference in a new issue