aboutsummaryrefslogtreecommitdiff
path: root/bpkg/configuration.cli
blob: 3487f76b52a5466f6608e452fdbce03c9499877f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// file      : bpkg/configuration.cli
// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

include <bpkg/common.cli>;

"\name=configuration" // Not a man page.

namespace bpkg
{
  // Common options for commands that operate on a configuration.
  //
  class configuration_options: common_options
  {
    dir_path --directory|-d (".")
    {
      "<dir>",
      "Assume configuration is in <dir> rather than in the current working
       directory."
    }
  };
}