如何中止 python Fabric run 命令?
run("if [ -d data.bak ];then mv data.bak data;fi;")
sudo('....')
sudo('')
我正在为我的网络项目使用 Fabric 部署。我想找到一种方法,如果找不到 data.bak 目录,则可以停止命令的其余执行。有什么办法可以在织物上实现这一点吗?
run("if [ -d data.bak ];then mv data.bak data;fi;")
sudo('....')
sudo('')
I am using fabric deploy for my web project. I want to find a way that will stop the rest of the execution of the command, if it doesn't find the data.bak directory. Any way to achieve this in fabric?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
fabric.contrib.files
导入中有一个贡献API。There is a contribute api in
fabric.contrib.files
import.