summaryrefslogtreecommitdiff
path: root/src/rebar_prv_deps.erl
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2015-08-12 22:36:34 -0500
committerTristan Sloughter <t@crashfast.com>2015-08-13 19:00:06 -0500
commitab92f1a2925fc69215d1355a6a8ec263c3e36007 (patch)
treee3ea4015e76e62ecf07e5b9face4ad7bc75c5a09 /src/rebar_prv_deps.erl
parent679acf994a71db39d502add1650852f535cbce00 (diff)
install package deps in same level/profile order as src deps
Diffstat (limited to 'src/rebar_prv_deps.erl')
-rw-r--r--src/rebar_prv_deps.erl3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rebar_prv_deps.erl b/src/rebar_prv_deps.erl
index 9dc5346..112b60b 100644
--- a/src/rebar_prv_deps.erl
+++ b/src/rebar_prv_deps.erl
@@ -34,7 +34,8 @@ do(State) ->
{_Packages, Graph} = rebar_state:packages(State),
List = merge_deps_per_profile(State),
{_SrcDeps, PkgDeps} = rebar_prv_install_deps:parse_deps(<<"">>, List, State, [], 0),
- rebar_digraph:print_solution(Graph, PkgDeps),
+ PkgDeps1 = [{default, 0, PkgDeps}],
+ rebar_digraph:print_solution(Graph, PkgDeps1),
{ok, State};
false ->
Profiles = rebar_state:current_profiles(State),