Hi David, thank you kindly for the pointer about running batch files on
Windows. However, I get the same results when running my build file from
the command line: the batch file executes (and starts the java process),
but never returns control to the build file, so I have to hit control-C to
exit the batch file.
<exec executable="cmd"
failonerror="${failonerror}"
failifexecutionfails="${failifexecutionfails}"
dir="${VCC_CBU_ICdir_root}">
<arg value="/c"/>
<arg value="${VCC_CBU_ICdir_root}${file.separator}IC_start.bat"/>
</exec>
Does this sound like something is going on in the batch file? Perhaps it's
looping or something...
Scott
> You need to read the section about the <exec> task for Windows users.
> You cannot execute a Batch command directly. You have to call
> command.exe and use the /c parameter.