mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 19:19:54 +00:00
Use REBAR_DEPS_DIR if set as location of DEPS dir
This commit is contained in:
parent
d3c7be265d
commit
620c4b01c6
1 changed files with 7 additions and 1 deletions
|
@ -245,7 +245,13 @@ info_help(Description) ->
|
|||
%% Sets a default if root config has no deps_dir set
|
||||
set_shared_deps_dir(Config, []) ->
|
||||
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);
|
||||
set_shared_deps_dir(Config, _DepsDir) ->
|
||||
Config.
|
||||
|
|
Loading…
Reference in a new issue