1
0
Fork 0

Fix typo in parameters array

This commit is contained in:
sylvainar 2017-08-24 18:42:00 +02:00
parent 1ecc7a6cf0
commit f055ab5934

View file

@ -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