Skip to content

Commit

Permalink
update action
Browse files Browse the repository at this point in the history
  • Loading branch information
reliveyy committed Oct 27, 2020
1 parent a1a1f21 commit 7aed353
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ def main():
build_parser = subparsers.add_parser("build", prog="build")
build_parser.add_argument("--dry-run", action="store_true")
build_parser.add_argument("--no-cache", action="store_true")
build_parser.add_argument("--platform", action="append")
build_parser.add_argument("--platform", "-p", action="append")
build_parser.add_argument("images", type=str, nargs="*")

push_parser = subparsers.add_parser("push")
push_parser.add_argument("--dirty-push", action="store_true")
push_parser.add_argument("--dry-run", action="store_true")
push_parser.add_argument("--no-cache", action="store_true")
push_parser.add_argument("--platform", action="append")
push_parser.add_argument("--platform", "-p", action="append")
push_parser.add_argument("images", type=str, nargs="*")

subparsers.add_parser("test")
Expand Down

0 comments on commit 7aed353

Please sign in to comment.