File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -13,14 +13,14 @@ def main():
13
13
build_parser = subparsers .add_parser ("build" , prog = "build" )
14
14
build_parser .add_argument ("--dry-run" , action = "store_true" )
15
15
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" )
17
17
build_parser .add_argument ("images" , type = str , nargs = "*" )
18
18
19
19
push_parser = subparsers .add_parser ("push" )
20
20
push_parser .add_argument ("--dirty-push" , action = "store_true" )
21
21
push_parser .add_argument ("--dry-run" , action = "store_true" )
22
22
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" )
24
24
push_parser .add_argument ("images" , type = str , nargs = "*" )
25
25
26
26
subparsers .add_parser ("test" )
You can’t perform that action at this time.
0 commit comments