Skip to content

Commit

Permalink
Merge pull request #477 from mulkieran/move-vendor-method-option
Browse files Browse the repository at this point in the history
Make vendor-method command-line option stratisd only
  • Loading branch information
mulkieran authored Sep 21, 2023
2 parents 22e5c71 + 994f0f7 commit 6779be9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions release_management/create_artifacts.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,6 @@ def main():
default=False,
help="do automatic actions for a pre-release version",
)
parser.add_argument(
"--vendor-method",
action="store",
help="Method of Rust vendoring",
choices=["standard", "filtered"],
default="standard",
)

subparsers = parser.add_subparsers(title="subcommands")

Expand All @@ -83,6 +76,13 @@ def main():

stratisd_parser.set_defaults(func=_stratisd_artifacts)
stratisd_parser.add_argument("version", action="store", help="version")
stratisd_parser.add_argument(
"--vendor-method",
action="store",
help="Method of Rust vendoring",
choices=["standard", "filtered"],
default="standard",
)

stratis_cli_parser = subparsers.add_parser(
"stratis-cli", help="Generate artifacts for a stratis-cli release."
Expand Down

0 comments on commit 6779be9

Please sign in to comment.