From 89dd478de7cf075beac69d0145df46f914cf35cf Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 19 Feb 2018 21:47:04 +0300 Subject: Add support for pkg-checkout --- bpkg/rep-info.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bpkg/rep-info.cxx') diff --git a/bpkg/rep-info.cxx b/bpkg/rep-info.cxx index 9fc7676..467c005 100644 --- a/bpkg/rep-info.cxx +++ b/bpkg/rep-info.cxx @@ -188,8 +188,8 @@ namespace bpkg // Note: serializing without any extra package_manifests info. // manifest_serializer s (cout, "STDOUT"); - for (const package_manifest& pm: rfd.packages) - pm.serialize (s); + for (const rep_fetch_data::package& p: rfd.packages) + p.manifest.serialize (s); s.next ("", ""); // End of stream. } else @@ -198,8 +198,8 @@ namespace bpkg // cout << endl; - for (const package_manifest& pm: rfd.packages) - cout << pm.name << "/" << pm.version << endl; + for (const rep_fetch_data::package& p: rfd.packages) + cout << p.manifest.name << "/" << p.manifest.version << endl; } } } -- cgit v1.1