在 Windows 中为 ant 在 build.xml 中指定 up 目录
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您可以尝试以下操作:
如果在属性中指定了 location 属性,则它会根据 ${basedir} (您的 ant build.xml 文件的目录)解析相对路径。
Maybe you could try this :
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.