mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
Fixed -e "" on ansible-playbook.
This commit is contained in:
@@ -103,7 +103,7 @@ def main(args):
|
|||||||
if extra_vars_opt.startswith("@"):
|
if extra_vars_opt.startswith("@"):
|
||||||
# Argument is a YAML file (JSON is a subset of YAML)
|
# Argument is a YAML file (JSON is a subset of YAML)
|
||||||
extra_vars = utils.combine_vars(extra_vars, utils.parse_yaml_from_file(extra_vars_opt[1:]))
|
extra_vars = utils.combine_vars(extra_vars, utils.parse_yaml_from_file(extra_vars_opt[1:]))
|
||||||
elif extra_vars_opt[0] in '[{':
|
elif extra_vars_opt and extra_vars_opt[0] in '[{':
|
||||||
# Arguments as YAML
|
# Arguments as YAML
|
||||||
extra_vars = utils.combine_vars(extra_vars, utils.parse_yaml(extra_vars_opt))
|
extra_vars = utils.combine_vars(extra_vars, utils.parse_yaml(extra_vars_opt))
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user