php/ng/modules: use ~ operator
Convert module to string before appending it to the base path to search for existing modules...
This commit is contained in:
parent
2d1d8f23ad
commit
0e431473cd
@ -8,7 +8,7 @@
|
|||||||
{% set install = [] %}
|
{% set install = [] %}
|
||||||
|
|
||||||
{% for module in modules %}
|
{% for module in modules %}
|
||||||
{% set state = base_name + module %}
|
{% set state = base_name ~ module %}
|
||||||
{% if state in existing_states %}
|
{% if state in existing_states %}
|
||||||
{% do includes.append(state) %}
|
{% do includes.append(state) %}
|
||||||
{% else %}
|
{% else %}
|
||||||
|
Loading…
Reference in New Issue
Block a user