Use REBAR_DEPS_DIR if set as location of DEPS dir

This commit is contained in:
Dave Smith 2013-07-02 10:59:26 -06:00
parent d3c7be265d
commit 620c4b01c6

View file

@ -245,7 +245,13 @@ info_help(Description) ->
%% Sets a default if root config has no deps_dir set %% Sets a default if root config has no deps_dir set
set_shared_deps_dir(Config, []) -> set_shared_deps_dir(Config, []) ->
LocalDepsDir = rebar_config:get_local(Config, deps_dir, "deps"), LocalDepsDir = rebar_config:get_local(Config, deps_dir, "deps"),
DepsDir = rebar_config:get_global(Config, deps_dir, LocalDepsDir), GlobalDepsDir = rebar_config:get_global(Config, deps_dir, LocalDepsDir),
DepsDir = case os:getenv("REBAR_DEPS_DIR") of
false ->
GlobalDepsDir;
Dir ->
Dir
end,
rebar_config:set_xconf(Config, deps_dir, DepsDir); rebar_config:set_xconf(Config, deps_dir, DepsDir);
set_shared_deps_dir(Config, _DepsDir) -> set_shared_deps_dir(Config, _DepsDir) ->
Config. Config.