From 743b24883d61d9756ea58283cf7de038f07b9ce4 Mon Sep 17 00:00:00 2001 From: Tristan Sloughter Date: Sun, 5 Apr 2015 09:23:46 -0500 Subject: removing installing of global plugins --- src/rebar3.erl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/rebar3.erl b/src/rebar3.erl index 461206d..84eae05 100644 --- a/src/rebar3.erl +++ b/src/rebar3.erl @@ -156,9 +156,8 @@ init_config() -> true -> ?DEBUG("Load global config file ~p", [GlobalConfigFile]), - GlobalConfig = rebar_state:new(global, rebar_config:consult_file(GlobalConfigFile)), - GlobalConfig1 = rebar_plugins:install(GlobalConfig), - rebar_state:new(GlobalConfig1, Config1); + GlobalConfig = rebar_state:new(rebar_config:consult_file(GlobalConfigFile)), + rebar_state:new(GlobalConfig, Config1); false -> rebar_state:new(Config1) end, -- cgit v1.1 From f18e84ce2b8bde2def81b111e6c042cd68f0f779 Mon Sep 17 00:00:00 2001 From: Tristan Sloughter Date: Sun, 5 Apr 2015 09:28:59 -0500 Subject: only install dep plugins from install_deps --- src/rebar_plugins.erl | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src') 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). -- cgit v1.1