blob: 4969dd9263392cc88b901cf4fc695d06d69bb200 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// file : bpkg/rep-create-options.cli
// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
include <bpkg/common-options.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."
}
};
}
|