解压缩任务覆盖目标文件
http://ant.apache.org/manual/Tasks/unzip.html - Unzip takes overwrites target files even when overwrite is given as false. What would be the problem here?
<unzip src="MathJax.zip" dest="${appserver.deploy}/ROOT.war" overwrite="false"/>
appserver.deploy - 指向appserver部署文件夹。
http://ant.apache.org/manual/Tasks/unzip.html - Unzip takes overwrites target files even when overwrite is given as false. What would be the problem here?
<unzip src="MathJax.zip" dest="${appserver.deploy}/ROOT.war" overwrite="false"/>
appserver.deploy - points to the appserver deploy folder.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅关于
ant unzip< 的此讨论 /code> 和
覆盖
参数。如果存档中的时间戳比目标中的时间戳新,看起来覆盖
将总是发生。讨论为此提供了一种解决方法。Refer to this discussion on
ant unzip
andoverwrite
parameter. It looks likeoverwrite
will always happen if timestamp in the archive is newer than that in the destination. The discussion offers a workaround for this.