mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-25 07:56:38 +00:00
Fix handling of extra_vars_path parameter. (#25272)
tower-cli process_extra_vars takes a list.
This commit is contained in:
@@ -233,7 +233,7 @@ def update_fields(p):
|
||||
|
||||
extra_vars = params.get('extra_vars_path')
|
||||
if extra_vars is not None:
|
||||
params_update['extra_vars'] = '@' + extra_vars
|
||||
params_update['extra_vars'] = ['@' + extra_vars]
|
||||
|
||||
params.update(params_update)
|
||||
return params
|
||||
|
||||
Reference in New Issue
Block a user