aboutsummaryrefslogtreecommitdiff
path: root/bpkg/help.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-10-30 16:56:24 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-10-31 17:49:58 +0300
commit7d03940f6816329fa9ae131591717749bc76be5a (patch)
tree4bd95c2c08261cb67a4b21a9040645de902e2925 /bpkg/help.cxx
parentdad48d98b1a57706179c34853950588ec75a8467 (diff)
Document default options files for commands
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 3946a5f..4b655f1 100644
--- a/bpkg/help.cxx
+++ b/bpkg/help.cxx
@@ -14,6 +14,7 @@
#include <bpkg/repository-signing.hxx>
#include <bpkg/repository-types.hxx>
#include <bpkg/argument-grouping.hxx>
+#include <bpkg/default-options-files.hxx>
using namespace std;
using namespace butl;
@@ -38,6 +39,8 @@ namespace bpkg
usage = &print_bpkg_repository_types_usage;
else if (t == "argument-grouping")
usage = &print_bpkg_argument_grouping_usage;
+ else if (t == "default-options-files")
+ usage = &print_bpkg_default_options_files_usage;
else
fail << "unknown bpkg command/help topic '" << t << "'" <<
info << "run 'bpkg help' for more information";