blob: 9cc75fda0ae63f9fa6db7fb70ef064374caf58d5 (
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
29
30
31
32
|
// file : bpkg/cfg-fetch.cli
// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
include <bpkg/configuration.cli>;
"\section=1"
"\name=bpkg-cfg-fetch"
"\summary=fetch list of available packages"
namespace bpkg
{
{
"<options>",
"\h|SYNOPSIS|
\c{\b{bpkg cfg-fetch}|\b{fetch} [<options>]}
\h|DESCRIPTION|
The \cb{cfg-fetch} command fetches the list of available packages for all
the repositories that were previously added with the \l{bpkg-cfg-add(1)}
command as well as all their complement and prerequisite repositories,
recursively."
}
class cfg_fetch_options: configuration_options
{
"\h|CFG-FETCH OPTIONS|"
};
}
|