Batch : Fix parenthese
This commit is contained in:
parent
179620e2b0
commit
f3d8dcaefe
@ -22,12 +22,12 @@
|
|||||||
register: st
|
register: st
|
||||||
- fail:
|
- fail:
|
||||||
msg: "Symlink manquant {{ansistrano_deploy_to}}/shared/datafile"
|
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:
|
- stat:
|
||||||
path: "{{ansistrano_deploy_to}}/shared/sources"
|
path: "{{ansistrano_deploy_to}}/shared/sources"
|
||||||
register: st
|
register: st
|
||||||
- fail:
|
- fail:
|
||||||
msg: "Symlink manquant {{ansistrano_deploy_to}}/shared/sources"
|
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