在 Windows 中为 ant 在 build.xml 中指定 up 目录

发布于 2024-12-07 10:44:45 字数 442 浏览 0 评论 0原文

我有一个 ant 的 build.xml 文件,我想将目录从 修改

<condition property="flex_sdk" value="%cd%/SDK/flex_sdk/">
        <os family="windows" />
</condition>

<condition property="flex_sdk" value="../SDK/flex_sdk/">
        <os family="windows" />
</condition>

Flex_sdk bin 目录有 .bat 文件,以便使用 cmd /c 运行它们。我收到错误“'..' 未被识别为内部或外部命令”。

非常感谢任何帮助。 谢谢。

I have a build.xml file for ant, and I want to modify a directory from

<condition property="flex_sdk" value="%cd%/SDK/flex_sdk/">
        <os family="windows" />
</condition>

to

<condition property="flex_sdk" value="../SDK/flex_sdk/">
        <os family="windows" />
</condition>

The flex_sdk bin directory has .bat files so they are run using cmd /c. I get the error "'..' is not recognized as an internal or external command".

Any help is greatly appreciated.
Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

乖乖哒 2024-12-14 10:44:45

也许您可以尝试以下操作:

<property name="bat.dir" location="${flex_sdk}"/>

如果在属性中指定了 location 属性,则它会根据 ${basedir} (您的 ant build.xml 文件的目录)解析相对路径。

Maybe you could try this :

<property name="bat.dir" location="${flex_sdk}"/>

The location attribute if specified in a property resolves relative paths based on the ${basedir} which is the directory of your ant build.xml file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文