Parcourir la source

Use REBAR_DEPS_DIR if set as location of DEPS dir

pull/3/head
Dave Smith il y a 12 ans
Parent
révision
620c4b01c6
1 fichiers modifiés avec 7 ajouts et 1 suppressions
  1. +7
    -1
      src/rebar_deps.erl

+ 7
- 1
src/rebar_deps.erl Voir le fichier

@ -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.

Chargement…
Annuler
Enregistrer