aboutsummaryrefslogtreecommitdiff
path: root/bpkg/rep-create.cli
diff options
context:
space:
mode:
Diffstat (limited to 'bpkg/rep-create.cli')
-rw-r--r--bpkg/rep-create.cli28
1 files changed, 28 insertions, 0 deletions
diff --git a/bpkg/rep-create.cli b/bpkg/rep-create.cli
new file mode 100644
index 0000000..b472cfc
--- /dev/null
+++ b/bpkg/rep-create.cli
@@ -0,0 +1,28 @@
+// file : bpkg/rep-create.cli
+// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+include <bpkg/common.cli>;
+
+"\section=1"
+"\name=bpkg-rep-create"
+"\summary=create repository manifest file"
+
+namespace bpkg
+{
+ class rep_create_options: common_options
+ {
+ /*
+ "Create repository manifest file (\cb{packages}) based on the
+ packages present in the repository directory."
+
+ "Use <dir> as the repository root directory instead of the
+ current working directory."
+ */
+
+ bool --ignore-unknown
+ {
+ "Ignore unknown manifest entries."
+ }
+ };
+}