From fad62fd770129d79e370fc95323543581473cad8 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 29 Jan 2019 16:12:21 +0300 Subject: Fix package dependency constraint completions that could end up with latest snapshot --- bpkg/pkg-verify.cxx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'bpkg/pkg-verify.cxx') diff --git a/bpkg/pkg-verify.cxx b/bpkg/pkg-verify.cxx index 3894b25..00a5db0 100644 --- a/bpkg/pkg-verify.cxx +++ b/bpkg/pkg-verify.cxx @@ -143,7 +143,10 @@ namespace bpkg } package_manifest - pkg_verify (const dir_path& d, bool iu, bool diag) + pkg_verify (const dir_path& d, + bool iu, + const function& tf, + bool diag) { // Parse the manifest. // @@ -161,7 +164,7 @@ namespace bpkg { ifdstream ifs (mf); manifest_parser mp (ifs, mf.string ()); - package_manifest m (mp, iu); + package_manifest m (mp, tf, iu); // We used to verify package directory is - but it is // not clear why we should enforce it in this case (i.e., the user -- cgit v1.1