Batch : Fix parenthese
This commit is contained in:
parent
179620e2b0
commit
f3d8dcaefe
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user