From 9a8ff818a0b704613bfc7eed5bbe989b2b5b94ba Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Mon, 19 Mar 2018 14:56:16 +0100 Subject: [PATCH] Fix: Template needs quoting Signed-off-by: Knut Ahlers --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index a66256c..a03f122 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,6 +1,6 @@ --- - include_tasks: act.yaml - with_items: {{ git_checkouts }} + with_items: '{{ git_checkouts }}' ...