0

在 Windows 8.1 中,当我运行它时,我将 exec 命令附加到输出文件的顶部。

<exec executable="cmd" os="Windows 8" spawn="false" dir="${basedir}" output="${build.out}" error="${build.err}">
    <arg value="/c"/>
    <arg line="${build.bat}" />
    <arg value="-p"/>
</exec>

输出文件如下所示:

 C:\yaya\the_base_dir>node C:\yaya\haha\pjsCompile.js 
 //here begins the output I expected....

如何从输出中删除命令?为什么会在那里?

如果有帮助,这是 build.bat:

 node C:\yaya\haha\pjsCompile.js
4

1 回答 1

2

更改build.bat为:

@node C:\yaya\haha\pjsCompile.js

或对此:

@echo off
node C:\yaya\haha\pjsCompile.js
于 2013-11-14T20:54:28.177 回答