Skip to content

Commit 0e43147

Browse files
author
Adrien "ze" Urban
committed
php/ng/modules: use ~ operator
Convert module to string before appending it to the base path to search for existing modules...
1 parent 2d1d8f2 commit 0e43147

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

php/ng/modules.sls

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
{% set install = [] %}
99
1010
{% for module in modules %}
11-
{% set state = base_name + module %}
11+
{% set state = base_name ~ module %}
1212
{% if state in existing_states %}
1313
{% do includes.append(state) %}
1414
{% else %}

0 commit comments

Comments
 (0)