From f055ab5934ebc9f8f9ff24b6e166dcc7e6e3d6b2 Mon Sep 17 00:00:00 2001 From: sylvainar Date: Thu, 24 Aug 2017 18:42:00 +0200 Subject: [PATCH] Fix typo in parameters array --- tasks/app.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/app.yml b/tasks/app.yml index e169080..6978056 100644 --- a/tasks/app.yml +++ b/tasks/app.yml @@ -4,5 +4,5 @@ register: yunohost_app_installed - name: Install app - shell: yunohost app install {{ app.link }} --args {% for key, value in app.args.items() %}{{key}}={{value}}{% if not loop.last %}\&{% endif %}{% endfor %} >> ~/log.txt + shell: yunohost app install {{ app.link }} --args "{% for key, value in app.args.items() %}{{key}}={{value}}{% if not loop.last %}&{% endif %}{% endfor %}" when: yunohost_app_installed.stat.exists == False