diff options
author | Tristan Sloughter <t@crashfast.com> | 2015-04-05 09:23:46 -0500 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2015-04-05 09:23:46 -0500 |
commit | 743b24883d61d9756ea58283cf7de038f07b9ce4 (patch) | |
tree | d25ab8d4be3bd87a30a6368356fc3ef43454d7f3 | |
parent | 79e2d6006c989a241d4599d048ff39f094f9e886 (diff) |
removing installing of global plugins
-rw-r--r-- | src/rebar3.erl | 5 |
1 files changed, 2 insertions, 3 deletions
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, |