Browse Source

fix backwards match for debugging print

Bob Ippolito 15 years ago
parent
commit
66f44c6362
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/rebar_core.erl

+ 1
- 1
src/rebar_core.erl View File

@ -333,7 +333,7 @@ choose_module_set([{Fn, Modules} | Rest], Dir) ->
plugin_modules(Config) ->
Modules = lists:flatten(rebar_config:get_all(Config, rebar_plugins)),
FoundModules = [M || M <- Modules, code:which(M) =/= non_existing],
case (Modules =/= FoundModules) of
case (Modules =:= FoundModules) of
true ->
ok;
false ->

Loading…
Cancel
Save