Browse Source

Correct sub_dirs loop log message

pull/3/head
Tuncer Ayaz 14 years ago
parent
commit
cc2447f1b1
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/rebar_subdirs.erl

+ 2
- 2
src/rebar_subdirs.erl View File

@ -59,10 +59,10 @@ check_loop(Cwd) ->
end,
case IsSymlink of
{false, Dir="."} ->
?ERROR("endless loop detected:~nsub_dirs"
?ERROR("infinite loop detected:~nsub_dirs"
" entry ~p in ~s~n", [Dir, RebarConfig]);
{true, Cwd} ->
?ERROR("endless loop detected:~nsub_dirs"
?ERROR("infinite loop detected:~nsub_dirs"
" entry ~p in ~s is a symlink to \".\"~n",
[Dir0, RebarConfig]);
_ ->

Loading…
Cancel
Save