From bc24eec7208187e171fd61ced7130fd8e2828257 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 14 Mar 2018 00:54:05 +0300 Subject: Add support for version iteration --- bpkg/pkg-verify.cxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'bpkg/pkg-verify.cxx') diff --git a/bpkg/pkg-verify.cxx b/bpkg/pkg-verify.cxx index 3d96136..a220480 100644 --- a/bpkg/pkg-verify.cxx +++ b/bpkg/pkg-verify.cxx @@ -9,6 +9,7 @@ #include #include +#include using namespace std; using namespace butl; @@ -20,7 +21,7 @@ namespace bpkg try { dir_path pd (package_dir (af)); - path mf (pd / path ("manifest")); + path mf (pd / manifest_file); // If diag is false, we need to make tar not print any diagnostics. There // doesn't seem to be an option to suppress this and the only way is to @@ -115,7 +116,7 @@ namespace bpkg { // Parse the manifest. // - path mf (d / path ("manifest")); + path mf (d / manifest_file); if (!exists (mf)) { -- cgit v1.1