make optional_arches optional
This commit is contained in:
parent
400e70a344
commit
919d8b23fb
1 changed files with 2 additions and 1 deletions
3
cli/koji
3
cli/koji
|
|
@ -5860,7 +5860,8 @@ def _build_image(options, task_opts, session, args, img_type):
|
|||
print
|
||||
|
||||
hub_opts = {}
|
||||
hub_opts['optional_arches'] = task_opts.optional_arches.split(',')
|
||||
if hasattr(task_opts, 'optional_arches'):
|
||||
hub_opts['optional_arches'] = task_opts.optional_arches.split(',')
|
||||
passthru_opts = [
|
||||
'format', 'install_tree_url', 'isoname', 'ksurl',
|
||||
'ksversion', 'release', 'repo', 'scratch', 'skip_tag',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue