Add aarch64 as a valid choice for CLI arch arg

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2020-04-18 15:15:04 -07:00
parent 4d590a1947
commit 05b418b796
1 changed files with 1 additions and 1 deletions

View File

@ -802,7 +802,7 @@ def parse_args(hdds):
"this nor --release is set, createhdds will decide the appropriate "
"arch(es) to build for each release. If this is not set but --release "
"is set, only x86_64 image(s) will be built.",
choices=('x86_64', 'i686', 'ppc64le', 'ppc64'))
choices=('x86_64', 'i686', 'ppc64le', 'aarch64'))
imgparser.set_defaults(func=cli_image)
# Here we're stuffing the type of the image and the dict from
# hdds into args for cli_image() to use.