From 222d57c776aa596334716c581e1c7a7f136ac278 Mon Sep 17 00:00:00 2001 From: Evgeniy Date: Fri, 13 Dec 2024 18:20:54 +0300 Subject: [PATCH] master: fix gen migrations in manifest template closes #40 --- plugin_template/manifest.yaml.template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin_template/manifest.yaml.template b/plugin_template/manifest.yaml.template index a6dcda3..ae14897 100644 --- a/plugin_template/manifest.yaml.template +++ b/plugin_template/manifest.yaml.template @@ -8,6 +8,6 @@ services: value: example migration: {{ "{% for migration in migrations -%}" }} - - {{ "{{ migration }}" }} -{{ "{%- endfor %}" }} +- {{ "{{ migration }}" }} +{{ "{% endfor -%}" }}