蚂蚁;如何指定文件可执行,这样我就不必每次都 chmod+x
当使用 Ant 构建我的应用程序时,它会生成一个 ZIP 文件。
我在这个 zip 中有一个 sh
文件,它包含在构建过程中。每次构建后我都必须执行 chmod +x myFile.sh
因为 ant 无法保留其原始的可执行权限。
如何指示 ant 保留对此文件的可执行权限?
When build my application with Ant, it produces a ZIP file.
I have a sh
file inside this zip, that is included as part of the build process. After each build I have to do chmod +x myFile.sh
as ant fails to retain its original executable permissions.
How can I instruct ant to keep executable permissions to this file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
filemode
属性来执行此操作:You can do this with the
filemode
attribute: