I have gone through number of posts on the very forum but couldn\'t sort it out. I am trying to run a BAT file from ANT script. The folder hierarchy is like this
<property name="buildC" value="${basedire}\build-C" />
This should be ${basedir} I guess? Use
${basedir}
<echo>${buildC}</echo>
to make sure the dir is correct.
And shouldn't
<exec dir="${buildC}" executable="test.bat" os="Windows XP" />
do the job?