Batch : Fix parenthese

This commit is contained in:
Michael RICOIS 2017-03-06 15:54:39 +01:00
parent 179620e2b0
commit f3d8dcaefe

View File

@ -22,12 +22,12 @@
register: st
- fail:
msg: "Symlink manquant {{ansistrano_deploy_to}}/shared/datafile"
when: (project_env != "dev") and st.stat.islnk is not defined or st.stat.islnk == False)
when: (project_env != "dev") and (st.stat.islnk is not defined or st.stat.islnk == False)
- stat:
path: "{{ansistrano_deploy_to}}/shared/sources"
register: st
- fail:
msg: "Symlink manquant {{ansistrano_deploy_to}}/shared/sources"
when: (project_env != "dev") and st.stat.islnk is not defined or st.stat.islnk == False)
when: (project_env != "dev") and (st.stat.islnk is not defined or st.stat.islnk == False)