diff options
Diffstat (limited to 'src/rebar_core.erl')
-rw-r--r-- | src/rebar_core.erl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/rebar_core.erl b/src/rebar_core.erl index 790edc9..75569b4 100644 --- a/src/rebar_core.erl +++ b/src/rebar_core.erl @@ -85,7 +85,8 @@ process_commands([Command | Rest], ParentConfig) -> case erlang:get(operations) of Operations -> %% This command didn't do anything - ?CONSOLE("Command '~p' not understood\n", [Command]); + ?CONSOLE("Command '~p' not understood or not applicable~n", + [Command]); _ -> ok end, @@ -361,7 +362,7 @@ acc_modules([Module | Rest], Command, Config, File, Acc) -> %% Return a flat list of rebar plugin modules. %% plugin_modules(Config) -> - Modules = lists:flatten(rebar_config:get_all(Config, rebar_plugins)), + Modules = lists:flatten(rebar_config:get_all(Config, plugins)), plugin_modules(Config, ulist(Modules)). ulist(L) -> |