I am calling a dos batch file from an Ant script using the following code :-
<property name="dos" location="c:/windows/system32/cmd.exe"/> <exec executable="${dos}" dir="c:/build/"> <arg value="CommonCommponent.bat"/> </exec> On the assumption that I get the Microsoft Windows Copyright info appear, I assume the above commands are running ok. The only trouble is, the contents / commands in the batch file don't seen to get executed. Batch file contents are :- set component=common ant -f %build.dir%/component.xml Any help would be gratefully received. Chris