ant的<exec>任务在windows7 </exec>中无法正常工作

时间:2013-09-24 08:19:21

标签: ant

我在OS Windows 7上运行以下的ant脚本:

<project name="Test" default="TCResultOutput" basedir=".">
<target name="TCResultOutput" description="writes TC result">
    <exec executable="cmd" failonerror="true">
        <arg line="/c ( echo hello world >> testreult.txt)" />
    </exec>
</target>
</project>

以上脚本在具有相同操作系统Windows 7的某台机器上运行正常,但在具有相同操作系统版本的其他机器中则无法运行。请让我知道我在哪里面对这个问题。

0 个答案:

没有答案