From 0e431473cd7a6ed74031d6ecf5a183070fbacd92 Mon Sep 17 00:00:00 2001 From: "Adrien \"ze\" Urban" Date: Thu, 11 Apr 2019 10:41:25 +0200 Subject: [PATCH] php/ng/modules: use ~ operator Convert module to string before appending it to the base path to search for existing modules... --- php/ng/modules.sls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/ng/modules.sls b/php/ng/modules.sls index d7e4a04..56b20de 100644 --- a/php/ng/modules.sls +++ b/php/ng/modules.sls @@ -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 %}