diff options
author | Tristan Sloughter <t@crashfast.com> | 2014-09-20 09:08:24 -0500 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2014-09-20 09:08:24 -0500 |
commit | 6f9ea13dd423d7ff0307265140496fb36c62d924 (patch) | |
tree | 5f3c0725cc62144ea2050ac8934b850b2a9468ac /src | |
parent | 51f1cf4aae5a22fe8974edcdf10da4e8a7b05255 (diff) |
move deps and plugins to _ prefixed
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_plugins.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_plugins.erl b/src/rebar_plugins.erl index 3e51f7f..d8422d8 100644 --- a/src/rebar_plugins.erl +++ b/src/rebar_plugins.erl @@ -12,7 +12,7 @@ %% =================================================================== install(State) -> - State1 = rebar_state:set(State, deps_dir, "plugins"), + State1 = rebar_state:set(State, deps_dir, ?DEFAULT_PLUGINS_DIR), Plugins = rebar_state:get(State1, plugins, []), {ok, State2} = rebar_prv_install_deps:handle_deps(State1, Plugins), |