aboutsummaryrefslogtreecommitdiff
path: root/bpkg/rep-fetch.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bpkg/rep-fetch.cxx')
-rw-r--r--bpkg/rep-fetch.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/bpkg/rep-fetch.cxx b/bpkg/rep-fetch.cxx
index e112bf7..641efb2 100644
--- a/bpkg/rep-fetch.cxx
+++ b/bpkg/rep-fetch.cxx
@@ -166,7 +166,7 @@ namespace bpkg
const auto& ua (root->complements); // User-added repositories.
if (ua.empty ())
- fail << "configuration has no repositories" <<
+ fail << "configuration " << c << " has no repositories" <<
info << "use 'bpkg rep-add' to add a repository";
// Clean repositories and available packages. At the end only
@@ -206,8 +206,8 @@ namespace bpkg
size_t rcount, pcount;
if (verb)
{
- rcount = db.query_value<repository_count> ().result;
- pcount = db.query_value<available_package_count> ().result;
+ rcount = db.query_value<repository_count> ();
+ pcount = db.query_value<available_package_count> ();
}
t.commit ();