hi everyone
i have a questiong, i have a problem running ant's <exec>.
<exec dir="${DATA.DIR}/registry/java" executable="addregistry.bat"
os="${os.name}">
<arg line="addregistry.bat"/>
</exec>
this is the command i use , however , location of ${DATA.DIR} is
D:\Deployer(Full) , i think the ( ) is disabling it to run . does
anyone have a solution or suggestion ?
thanks
jfbriere - 23 Nov 2005 04:53 GMT
Try this instead:
<exec dir="${DATA.DIR}/registry/java"
executable="cmd.exe"
os="${os.name}">
<arg line="/c addregistry.bat" />
</exec>
Regards