posted 17 years ago
Hi,
I have a batch file in the current base directory. I tried running the batch file using the following command.
<?xml version="1.0" encoding="UTF-8"?>
<project name="batchFile" default="exec" basedir=".">
<target name="exec">
<echo>start execution</echo>
<exec dir="${basedir}" executable="batch" os="Windows NT">
<arg line="stop_copy_start"/>
</exec>
</target>
</project>
The echo is getting executed but there is no warning error or any intimation but the Build successfull message is getting displayed.
Can someone tell me how to run the batch file. THe os is windows xp service pack 2.
Thanks and regards,
Pradeep Kumar