mirror of
https://github.com/correl/rebar.git
synced 2024-12-18 11:06:20 +00:00
fix backwards match for debugging print
This commit is contained in:
parent
92be7a38bf
commit
66f44c6362
1 changed files with 1 additions and 1 deletions
|
@ -333,7 +333,7 @@ choose_module_set([{Fn, Modules} | Rest], Dir) ->
|
||||||
plugin_modules(Config) ->
|
plugin_modules(Config) ->
|
||||||
Modules = lists:flatten(rebar_config:get_all(Config, rebar_plugins)),
|
Modules = lists:flatten(rebar_config:get_all(Config, rebar_plugins)),
|
||||||
FoundModules = [M || M <- Modules, code:which(M) =/= non_existing],
|
FoundModules = [M || M <- Modules, code:which(M) =/= non_existing],
|
||||||
case (Modules =/= FoundModules) of
|
case (Modules =:= FoundModules) of
|
||||||
true ->
|
true ->
|
||||||
ok;
|
ok;
|
||||||
false ->
|
false ->
|
||||||
|
|
Loading…
Reference in a new issue