diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2011-07-07 15:29:53 +0200 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2011-07-07 15:31:43 +0200 |
commit | cc2447f1b13f4a4501309254354ee4c15557be10 (patch) | |
tree | 919f63a6a73257367a7a27142e29508a81d04e5f /src | |
parent | e0a86868cab4e091042568faa3da96b574917787 (diff) |
Correct sub_dirs loop log message
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_subdirs.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rebar_subdirs.erl b/src/rebar_subdirs.erl index 261bdf8..119dacb 100644 --- a/src/rebar_subdirs.erl +++ b/src/rebar_subdirs.erl @@ -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]); _ -> |