aboutsummaryrefslogtreecommitdiff
path: root/bpkg/rep-create.cli
blob: b472cfc0f1312538dedf776fe8507e7e81ae598b (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
// file      : bpkg/rep-create.cli
// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

include <bpkg/common.cli>;

"\section=1"
"\name=bpkg-rep-create"
"\summary=create repository manifest file"

namespace bpkg
{
  class rep_create_options: common_options
  {
    /*
      "Create repository manifest file (\cb{packages}) based on the
       packages present in the repository directory."

      "Use <dir> as the repository root directory instead of the
       current working directory."
    */

    bool --ignore-unknown
    {
      "Ignore unknown manifest entries."
    }
  };
}