Skip to content

Commit 7aed353

Browse files
committed
update action
1 parent a1a1f21 commit 7aed353

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/helper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ def main():
1313
build_parser = subparsers.add_parser("build", prog="build")
1414
build_parser.add_argument("--dry-run", action="store_true")
1515
build_parser.add_argument("--no-cache", action="store_true")
16-
build_parser.add_argument("--platform", action="append")
16+
build_parser.add_argument("--platform", "-p", action="append")
1717
build_parser.add_argument("images", type=str, nargs="*")
1818

1919
push_parser = subparsers.add_parser("push")
2020
push_parser.add_argument("--dirty-push", action="store_true")
2121
push_parser.add_argument("--dry-run", action="store_true")
2222
push_parser.add_argument("--no-cache", action="store_true")
23-
push_parser.add_argument("--platform", action="append")
23+
push_parser.add_argument("--platform", "-p", action="append")
2424
push_parser.add_argument("images", type=str, nargs="*")
2525

2626
subparsers.add_parser("test")

0 commit comments

Comments
 (0)