aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-update-options.cli
blob: e9fbbb28494ecf5dfde4eaa16e70473482adbbf0 (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/pkg-update-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-pkg-update"

"\h{SYNOPSIS}

bpkg pkg-update <pkg>"

"\h{DESCRIPTION}

The \cb{pkg-update} command updates the previously configured
(\cb{pkg-configure}) package. Underneath, this command doesn't
do much more than run (\cb{b update})."
*/

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