We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
When i use user_input.yaml in add-on to templatize some files, values are not correctly replaced by the find_replace.py script.
user_input.yaml
find_replace.py
Example, for the variable named key with value value_of_key_variable.
key
value_of_key_variable
In template, the string {{ key }} will be replaced by "value_of_key_variable" instead of "value_of_key_variable".
{{ key }}
"value_of_key_variable"
"value_of_key_variable"
A small modification of the script introduce this error in v1.1.0.
v1.0.0:
# bin/codebuild_scripts/find_replace.py:33 ... j2env = jinja2.Environment(loader=j2loader) ...
v1.1.0:
# bin/codebuild_scripts/find_replace.py:35 ... j2env = Environment(loader=j2loader, autoescape=True) # Compliant ...
Can you reverse it ?
The text was updated successfully, but these errors were encountered:
Thanks @Maniarr for raising this issue. We have added this to our backlog and plan to publish the requested change in the next release.
Sorry, something went wrong.
Hello @Maniarr . We have fixed this issue in CFCT V1.2
No branches or pull requests
Hello,
When i use
user_input.yaml
in add-on to templatize some files, values are not correctly replaced by thefind_replace.py
script.Example, for the variable named
key
with valuevalue_of_key_variable
.In template, the string
{{ key }}
will be replaced by"value_of_key_variable"
instead of"value_of_key_variable"
.A small modification of the script introduce this error in v1.1.0.
v1.0.0:
v1.1.0:
Can you reverse it ?
The text was updated successfully, but these errors were encountered: