summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/rebar3.erl5
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,