blob: 143efe406b52a910cfdf91b25f18b9b6974108d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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."
};
};
}
|