将 ph 中的任务移动到减慢速度
目前正在使用 phing 构建构建过程。每次我想要部署到实时版本时,我都会使用以下命令移动暂存版本,
<move file="${next_version}" tofile="${current_version}" />
但是,由于移动类型继承自副本(如文档中所述),因此此过程确实需要一些时间,并且与任何 shell 移动命令都不具有可比性。有没有一种方法可以调用 move,或者我是否必须回退到 execTask (那么至少在这种情况下,认为 move 没有任何意义)
提前致谢
Currently building a build process with phing. Each time I want to deploy to live, I move the staging version with the following command
<move file="${next_version}" tofile="${current_version}" />
but, since move kind of inherits from copy (as stated in the documentation), this procedure really takes some time and is not comparible to any shell move command. Is there a metter way to call move, or do I have to fallback to the execTask (seeing no sense in move then, at least in that case)
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
移动任务实际上会复制文件,这很糟糕。请在 phing bug 跟踪器上打开功能请求。
The move task really copies files, which is crap. Please open a feature request on the phing bug tracker.