aboutsummaryrefslogtreecommitdiff
path: root/bpkg/help.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-05-05 14:45:38 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-05-05 14:45:38 +0200
commitaae351ab537a4c7b62511ef72a8b3822c7722b2c (patch)
tree49450b294283fd2b122024c16774c1e81b725244 /bpkg/help.cxx
parent05ca2987142b95925dba36a9eaef2c22a0f32081 (diff)
Factor repository types documentation into bpkg-repository-types(1)
Diffstat (limited to 'bpkg/help.cxx')
-rw-r--r--bpkg/help.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/bpkg/help.cxx b/bpkg/help.cxx
index c66fd66..4b642e8 100644
--- a/bpkg/help.cxx
+++ b/bpkg/help.cxx
@@ -12,6 +12,7 @@
// Help topics.
//
#include <bpkg/repository-signing.hxx>
+#include <bpkg/repository-types.hxx>
using namespace std;
using namespace butl;
@@ -32,6 +33,8 @@ namespace bpkg
usage = &print_bpkg_common_options_long_usage;
else if (t == "repository-signing")
usage = &print_bpkg_repository_signing_usage;
+ else if (t == "repository-types")
+ usage = &print_bpkg_repository_types_usage;
else
fail << "unknown bpkg command/help topic '" << t << "'" <<
info << "run 'bpkg help' for more information";