蚂蚁;如何指定文件可执行,这样我就不必每次都 chmod+x

发布于 2024-09-16 15:22:17 字数 189 浏览 8 评论 0原文

当使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

许你一世情深 2024-09-23 15:22:17

您可以使用 filemode 属性来执行此操作:

<zip destfile="myapp.zip">
    <zipfileset dir="scripts" includes="myscript.sh" filemode="755" />
    <zipfileset dir="build" includes="myapp.jar" />
</zip>

You can do this with the filemode attribute:

<zip destfile="myapp.zip">
    <zipfileset dir="scripts" includes="myscript.sh" filemode="755" />
    <zipfileset dir="build" includes="myapp.jar" />
</zip>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文