Repair BookStack quoting
All checks were successful
ci/lysergic/push/pipeline Pipeline was successful
All checks were successful
ci/lysergic/push/pipeline Pipeline was successful
Attempt to repair quoting by correcting the if-condition grouping and by replacing the quote filter with manual quotes. Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
This commit is contained in:
parent
8d9af70941
commit
4053be45d2
@ -24,10 +24,10 @@ bookstack_permissions:
|
|||||||
- key_values:
|
- key_values:
|
||||||
{%- macro condconf(option) %}
|
{%- macro condconf(option) %}
|
||||||
{%- if option in mypillar -%}
|
{%- if option in mypillar -%}
|
||||||
{%- if mypillar[option] is string and mypillar[option].startswith('$') or mypillar[option] is number %}
|
{%- if ( mypillar[option] is string and mypillar[option].startswith('$') ) or mypillar[option] is number %}
|
||||||
{%- set value = mypillar[option] %}
|
{%- set value = mypillar[option] %}
|
||||||
{%- else %}
|
{%- else %}
|
||||||
{%- set value = "'" ~ mypillar[option] ~ "'" | quote %}
|
{%- set value = "\"'" ~ mypillar[option] ~ "\"'" %}
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
{{ option | upper }}: {{ value }}
|
{{ option | upper }}: {{ value }}
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
|
Loading…
Reference in New Issue
Block a user