def add_args(parser: configargparse.ArgumentParser) -> None:
for m in _packers.values():
m.add_args(parser)
gr_packers = parser.add_argument_group("Packer shared options")
gr_packers.add_argument("--copy-out", dest="copy_out", default=None,
help="The destination path inside the build environment, where the resulting packages will "
"be copied. This will usually be the path of a bindmount, created with --mount in the "
"build folder of your build server, for example.")
parser.add_argument("--help-packer", action=PackerHelpAction, choices=_packers.keys(), default=None)
评论列表
文章目录