summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTuncer Ayaz <tuncer.ayaz@gmail.com>2011-07-07 15:29:53 +0200
committerTuncer Ayaz <tuncer.ayaz@gmail.com>2011-07-07 15:31:43 +0200
commitcc2447f1b13f4a4501309254354ee4c15557be10 (patch)
tree919f63a6a73257367a7a27142e29508a81d04e5f
parente0a86868cab4e091042568faa3da96b574917787 (diff)
Correct sub_dirs loop log message
-rw-r--r--src/rebar_subdirs.erl4
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]);
_ ->