服务器上的自动化 django 接收钩子:用“yes”响应collectstatic
我正在使用 Github post-recieve hook 来运行一个 bash 文件来提取我的两个存储库。
#!/bin/sh
cd ~/public_html/repo_static
env -i /usr/bin/git pull origin master
cd ~/django-code/repo_django
env -i /usr/bin/git pull origin master
我还想在 django 存储库上 collectstatic
。我如何自动回答“是”?
我无法使用 Fabric 因为不幸的是团队选择使用 Python暂时是2.4。有没有一种方法可以在没有 Fabric 的情况下自动化收集静态?
I'm using a Github post-recieve hook to run a bash file that pulls both my repos.
#!/bin/sh
cd ~/public_html/repo_static
env -i /usr/bin/git pull origin master
cd ~/django-code/repo_django
env -i /usr/bin/git pull origin master
I also want to collectstatic
on the django repo. How do I automate the "yes" response to that?
I can't use Fabric because unfortunately the team chose to work with Python 2.4 for the time being. Is there a way to automate collectstatic without Fabric?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想指定默认答案,也可以将其通过管道传输到命令中:
或
If you'd like to specify the default answer, you could also just pipe it into the command:
or