aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-fetch.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bpkg/pkg-fetch.cxx')
-rw-r--r--bpkg/pkg-fetch.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/bpkg/pkg-fetch.cxx b/bpkg/pkg-fetch.cxx
index 9a2e84c..492c4e7 100644
--- a/bpkg/pkg-fetch.cxx
+++ b/bpkg/pkg-fetch.cxx
@@ -226,7 +226,7 @@ namespace bpkg
return p;
}
- void
+ int
pkg_fetch (const pkg_fetch_options& o, cli::scanner& args)
{
tracer trace ("pkg_fetch");
@@ -269,5 +269,7 @@ namespace bpkg
if (verb)
text << "fetched " << p->name << " " << p->version;
+
+ return 0;
}
}