summaryrefslogtreecommitdiff
path: root/src/rebar_ct.erl
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2014-08-25 21:41:12 -0500
committerTristan Sloughter <t@crashfast.com>2014-08-25 21:41:22 -0500
commitf17812d963b34c8157df44a4dee8380a581aa200 (patch)
treee76b1ec35918aa778b9201ee3693de4da8f6a995 /src/rebar_ct.erl
parentf72a38c3b3d409dca529697cb3d3715cbf76a1bf (diff)
fix up tarball extraction path and parse goal constraints
Diffstat (limited to 'src/rebar_ct.erl')
-rw-r--r--src/rebar_ct.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rebar_ct.erl b/src/rebar_ct.erl
index abd29cc..b5abeae 100644
--- a/src/rebar_ct.erl
+++ b/src/rebar_ct.erl
@@ -225,7 +225,7 @@ make_cmd(TestDir, RawLogDir, State) ->
%% that are part of the root Erlang install are filtered out to
%% avoid duplication
Apps = rebar_state:apps_to_build(State),
- DepsDir = rebar_prv_deps:get_deps_dir(State),
+ DepsDir = rebar_prv_install_deps:get_deps_dir(State),
DepsDirEbin = filename:join([DepsDir, "*", "ebin"]),
AppDirs = [filename:join(rebar_app_info:dir(A), "ebin") || A <- Apps],
CodeDirs = [io_lib:format("\"~s\"", [Dir]) || Dir <- [DepsDirEbin | AppDirs]],
@@ -311,7 +311,7 @@ get_cover_config(State, Cwd) ->
end.
collect_glob(State, Cwd, Glob) ->
- DepsDir = rebar_prv_deps:get_deps_dir(State),
+ DepsDir = rebar_prv_install_deps:get_deps_dir(State),
CwdParts = filename:split(Cwd),
filelib:fold_files(Cwd, Glob, true, fun(F, Acc) ->
%% Ignore any specs under the deps/ directory. Do this pulling