Skip to content

Commit

Permalink
cmd-push-container-manifest: fix minor typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jlebon committed Oct 21, 2022
1 parent daff388 commit 27d41ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cmd-push-container-manifest
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Examples:
parser.add_argument("--tag", required=True, help="The tag of the manifest to use")
parser.add_argument("--authfile", help="A file to use for registry auth")
parser.add_argument('--v2s2', action='store_true',
help='Use old image manifest version2 schema 2 format')
help='Use old image manifest version 2 schema 2 format')

group = parser.add_mutually_exclusive_group(required=True)
group.add_argument("--image", dest='images', action='append', default=[],
Expand All @@ -112,7 +112,7 @@ Examples:
parser.add_argument("--arch", dest='arches', action='append', default=[],
help="""Limit the architectures to upload to the specificed set
(otherwise it defaults to all available for that build). Can be
specificed multiple times like: --arch x86_64 --arch aarch64""")
specified multiple times like: --arch x86_64 --arch aarch64""")
parser.add_argument("--metajsonname",
help="The name under which to store the container information in meta.json")
return parser.parse_args()
Expand Down

0 comments on commit 27d41ac

Please sign in to comment.