aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-update.hxx
blob: cac7651a613b4a84a9d2d2da571130ca6e851bf1 (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
34
35
36
37
38
39
40
// file      : bpkg/pkg-update.hxx -*- C++ -*-
// license   : MIT; see accompanying LICENSE file

#ifndef BPKG_PKG_UPDATE_HXX
#define BPKG_PKG_UPDATE_HXX

#include <bpkg/types.hxx>
#include <bpkg/utility.hxx>

#include <bpkg/pkg-command.hxx>
#include <bpkg/pkg-update-options.hxx>

namespace bpkg
{
  inline int
  pkg_update (const pkg_update_options& o, cli::group_scanner& args)
  {
    return pkg_command ("update",
                        o,
                        o.for_ (),
                        o.recursive (),
                        o.immediate (),
                        o.all (),
                        o.all_pattern (),
                        false /* package_cwd */,
                        true /* allow_host_type */,
                        args);
  }

  inline void
  pkg_update (const common_options& o,
              const string& cmd_variant,
              const strings& common_vars,
              const vector<pkg_command_vars>& pkgs)
  {
    pkg_command ("update", o, cmd_variant, common_vars, pkgs);
  }
}

#endif // BPKG_PKG_UPDATE_HXX