I looked through the nant and sourceforge faq documentation and cannot find the answer to this question. The exec task in nant places () around the command line options that it generates, so for example, this task generates below:
mallow (-1)
<exec program="${build.tools.wix}\mallow.exe"
workingdir="${build.out.xxx}">
<arg value="-1" />
</exec>
Another open source tool I use, mallow, cannot handle this.
Does anyone know how to stop nant by putting () around arguments?
Thank.
source
share