Warn if we ignore a skip_dir's sub_dirs

This commit is contained in:
Tuncer Ayaz 2012-01-13 18:20:05 +01:00
parent cab1671ea0
commit 0689928527

View file

@ -38,11 +38,14 @@
preprocess(Config, _) -> preprocess(Config, _) ->
%% Get the list of subdirs specified in the config (if any). %% Get the list of subdirs specified in the config (if any).
Cwd = rebar_utils:get_cwd(), Cwd = rebar_utils:get_cwd(),
case rebar_core:is_skip_dir(Cwd) of Subdirs0 = rebar_config:get_local(Config, sub_dirs, []),
true -> case {rebar_core:is_skip_dir(Cwd), Subdirs0} of
{true, []} ->
{ok, []}; {ok, []};
false -> {true, _} ->
Subdirs0 = rebar_config:get_local(Config, sub_dirs, []), ?WARN("Ignoring sub_dirs for ~s~n", [Cwd]),
{ok, []};
{false, _} ->
Check = check_loop(Cwd), Check = check_loop(Cwd),
ok = lists:foreach(Check, Subdirs0), ok = lists:foreach(Check, Subdirs0),
Subdirs = [filename:join(Cwd, Dir) || Dir <- Subdirs0], Subdirs = [filename:join(Cwd, Dir) || Dir <- Subdirs0],