The Build file runs successfully but I don't see the MS windows appear as a result. The start command worked fine from an MS batch file but I need to call it from an ANT script. The args seem to expand correctly.
Anyone have a solution? I need to have the cmd window stay around and ANT not wait fro the command completion. The relevent piece of the build file is below:
<target name="tbus" depends="checkenv">
<exec executable="cmd" os="Windows 2000" spawn="true">
<!-- <arg value="cmd"/>-->
<arg value="BUS SERVER"/>
<arg value="${e2edconf}\..\server\debug\server"/>
<arg value="${e2edconf}\BUS_config.txt"/>
</exec>
</target>
Noel