Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Bodong-Yang committed Dec 25, 2023
1 parent 6214184 commit b3f0f3e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tools/images_packer/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ def command_build_cache_src(
subparser: argparse.ArgumentParser = subparsers.add_parser(
name=cmd,
description="build external OTA cache source recognized and used otaproxy.",
argument_default=None,
)
subparser.add_argument(
"--image",
Expand All @@ -193,6 +194,7 @@ def command_build_cache_src(
subparser.add_argument(
"-o",
"--output",
required=False,
help="save the generated image bundle tar archive to <OUTPUT_FILE_PATH>.",
metavar="<OUTPUT_FILE_PATH>",
)
Expand Down Expand Up @@ -225,6 +227,7 @@ def command_build_offline_ota_image_bundle(
subparser: argparse.ArgumentParser = subparsers.add_parser(
name=cmd,
description="build OTA image bundle for offline OTA use.",
argument_default=None,
)
subparser.add_argument(
"--image",
Expand All @@ -239,6 +242,7 @@ def command_build_offline_ota_image_bundle(
subparser.add_argument(
"-o",
"--output",
required=True,
help="save the generated image bundle tar archive to <OUTPUT_FILE_PATH>.",
metavar="<OUTPUT_FILE_PATH>",
)
Expand Down

0 comments on commit b3f0f3e

Please sign in to comment.