From cce1ad00ba9d1bbedeeee14b3fe268b8c6dc8f2b Mon Sep 17 00:00:00 2001 From: Tristan Sloughter Date: Sat, 18 Apr 2015 21:21:13 -0500 Subject: ignore optional deps for now --- src/rebar_prv_update.erl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/rebar_prv_update.erl b/src/rebar_prv_update.erl index 6cdabeb..d0ff889 100644 --- a/src/rebar_prv_update.erl +++ b/src/rebar_prv_update.erl @@ -91,7 +91,7 @@ hex_to_graph(Filename) -> {Dict1, Graph}. update_graph(Pkg, PkgVsn, Deps, HexRegistry, Graph) -> - lists:foldl(fun([Dep, DepVsn, _, _], DepsListAcc) -> + lists:foldl(fun([Dep, DepVsn, false, _AppName | _], DepsListAcc) -> case DepVsn of <<"~> ", Vsn/binary>> -> HighestDepVsn = rebar_packages:find_highest_matching(Dep, Vsn, HexRegistry), @@ -100,5 +100,7 @@ update_graph(Pkg, PkgVsn, Deps, HexRegistry, Graph) -> Vsn -> digraph:add_edge(Graph, {Pkg, PkgVsn}, {Dep, Vsn}), [{Dep, Vsn} | DepsListAcc] - end + end; + ([_Dep, _DepVsn, true, _AppName | _], DepsListAcc) -> + DepsListAcc end, [], Deps). -- cgit v1.1