aboutsummaryrefslogtreecommitdiff
path: root/bpkg/rep-create-options.cli
diff options
context:
space:
mode:
Diffstat (limited to 'bpkg/rep-create-options.cli')
-rw-r--r--bpkg/rep-create-options.cli23
1 files changed, 23 insertions, 0 deletions
diff --git a/bpkg/rep-create-options.cli b/bpkg/rep-create-options.cli
new file mode 100644
index 0000000..143efe4
--- /dev/null
+++ b/bpkg/rep-create-options.cli
@@ -0,0 +1,23 @@
+// file : bpkg/rep-create-options.cli
+// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+include <bpkg/common-options.cli>;
+
+namespace bpkg
+{
+ class rep_create_options: common_options
+ {
+ /*
+ "Create repository manifest file (\cb{packages}) based on the
+ packages present in the repository directory."
+ */
+
+ std::string --directory | -d
+ {
+ "<dir>",
+ "Use <dir> as the repository root directory instead of the
+ current working directory."
+ };
+ };
+}