Skip to content

Commit

Permalink
php/ng/modules: use ~ operator
Browse files Browse the repository at this point in the history
Convert module to string before appending it to the base path to search for
existing modules...
  • Loading branch information
Adrien "ze" Urban committed Apr 11, 2019
1 parent 2d1d8f2 commit 0e43147
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php/ng/modules.sls
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
{% set install = [] %}
{% for module in modules %}
{% set state = base_name + module %}
{% set state = base_name ~ module %}
{% if state in existing_states %}
{% do includes.append(state) %}
{% else %}
Expand Down

0 comments on commit 0e43147

Please sign in to comment.