mirror of
https://github.com/correl/rebar.git
synced 2024-12-18 11:06:20 +00:00
rebar_deps: fix whitespace errors
This commit is contained in:
parent
9a57e06015
commit
9521586bdd
1 changed files with 3 additions and 3 deletions
|
@ -184,9 +184,9 @@ setup_env(Config) ->
|
||||||
%% need all deps in same dir and should be the one set by the root rebar.config
|
%% need all deps in same dir and should be the one set by the root rebar.config
|
||||||
%% 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, []) ->
|
||||||
rebar_config:set_xconf(Config, deps_dir,
|
GlobalDepsDir = rebar_config:get_global(Config, deps_dir, "deps"),
|
||||||
rebar_config:get_local(Config, deps_dir,
|
DepsDir = rebar_config:get_local(Config, deps_dir, GlobalDepsDir),
|
||||||
rebar_config:get_global(Config, deps_dir, "deps")));
|
rebar_config:set_xconf(Config, deps_dir, DepsDir);
|
||||||
set_shared_deps_dir(Config, _DepsDir) ->
|
set_shared_deps_dir(Config, _DepsDir) ->
|
||||||
Config.
|
Config.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue