mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Allow camelCase variables in varreplace.
This commit is contained in:
@@ -243,7 +243,7 @@ def varReplace(raw, vars):
|
||||
|
||||
# Determine replacement value (if unknown variable then preserve
|
||||
# original)
|
||||
varname = m.group(2).lower()
|
||||
varname = m.group(2)
|
||||
|
||||
replacement = unicode(varLookup(varname, vars) or m.group())
|
||||
|
||||
|
||||
Reference in New Issue
Block a user