diff options
author | Andrew Thompson <andrew@hijacked.us> | 2014-03-05 13:39:55 -0500 |
---|---|---|
committer | Andrew Thompson <andrew@hijacked.us> | 2014-03-05 13:39:55 -0500 |
commit | 62b006227cc1c71102ff8a608b3b11e77a06fced (patch) | |
tree | 63994d7dad6a762b94a702eff009c6cc51bc5371 /src/rebar_deps.erl | |
parent | 6e24cd6ac7f8ba9b125c4898e29fa1e9a207f7d2 (diff) | |
parent | b6908421b7a83a2c2972c3263f32d438c3dc3cec (diff) |
Merge pull request #129 from tuncer/erlc-speedup-v5
Speed up the compilation process v5
Diffstat (limited to 'src/rebar_deps.erl')
-rw-r--r-- | src/rebar_deps.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_deps.erl b/src/rebar_deps.erl index 2e305d5..43bde04 100644 --- a/src/rebar_deps.erl +++ b/src/rebar_deps.erl @@ -304,7 +304,7 @@ get_deps_dir(Config) -> get_deps_dir(Config, ""). get_deps_dir(Config, App) -> - BaseDir = rebar_config:get_xconf(Config, base_dir, []), + BaseDir = rebar_utils:base_dir(Config), DepsDir = get_shared_deps_dir(Config, "deps"), {true, filename:join([BaseDir, DepsDir, App])}. |