aboutsummaryrefslogtreecommitdiff
path: root/bpkg/rep-fetch-options.cli
blob: 0e43edaf3a414d92a5143933efc7a22cf6db5485 (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
33
// file      : bpkg/rep-fetch-options.cli
// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

include <bpkg/common-options.cli>;

/*
"\section=1"
"\name=bpkg-rep-fetch"

"\h{SYNOPSIS}

bpkg rep-fetch [<options>]"

"\h{DESCRIPTION}

The \cb{rep-fetch} command recursively fetches the prerequisite repository
and available package lists for all the repositories that were added
(\cb{rep-add}) to the configuration."
*/

namespace bpkg
{
  class rep_fetch_options: common_options
  {
    dir_path --directory|-d (".")
    {
      "<dir>",
      "Assume configuration is in <dir> rather than in the current working
       directory."
    };
  };
}