blob: c961c05fe846a714624338aeeb0e79d0a693a3ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// 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."
"Use <dir> as the repository root directory instead of the
current working directory."
*/
};
}
|