diff options
-rw-r--r-- | src/rebar_plugins.erl | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/rebar_plugins.erl b/src/rebar_plugins.erl index a9550ff..02e8f4e 100644 --- a/src/rebar_plugins.erl +++ b/src/rebar_plugins.erl @@ -13,18 +13,16 @@ -spec install(rebar_state:t()) -> rebar_state:t(). install(State) -> - DepsDir = rebar_dir:deps_dir(State), Plugins = rebar_state:get(State, plugins, []), ProjectApps = rebar_state:project_apps(State), - DepApps = rebar_app_discover:find_apps([DepsDir], all), OtherPlugins = lists:flatmap(fun(App) -> AppDir = rebar_app_info:dir(App), C = rebar_config:consult(AppDir), S = rebar_state:new(rebar_state:new(), C, AppDir), rebar_state:get(S, plugins, []) - end, ProjectApps++DepApps), + end, ProjectApps), handle_plugins(Plugins++OtherPlugins, State). |