From d839a0be8dbd6355dc7d71b1e0e2f425b3f47fe9 Mon Sep 17 00:00:00 2001 From: Tristan Sloughter Date: Tue, 27 Feb 2018 13:26:21 -0800 Subject: don't attempt retry of missing packages when updating index --- src/rebar_prv_update.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/rebar_prv_update.erl') diff --git a/src/rebar_prv_update.erl b/src/rebar_prv_update.erl index 79804d3..6dee7fd 100644 --- a/src/rebar_prv_update.erl +++ b/src/rebar_prv_update.erl @@ -206,7 +206,7 @@ valid_vsn(Vsn) -> re:run(Vsn, SupportedVersions, [unicode]) =/= nomatch. highest_matching({Pkg, PkgVsn, Dep, App}, Vsn, HexRegistry, State, DepsListAcc) -> - case rebar_packages:find_highest_matching(Pkg, PkgVsn, Dep, Vsn, HexRegistry, State) of + case rebar_packages:find_highest_matching_(Pkg, PkgVsn, Dep, Vsn, HexRegistry, State) of {ok, HighestDepVsn} -> [{App, {pkg, Dep, HighestDepVsn, undefined}} | DepsListAcc]; none -> -- cgit v1.1