--- [EMAIL PROTECTED] wrote: > Matt, > > I dont think output="${null.device}" works for me. > Any reasons? Do i need to > set something in order to use it?
You've got to do some OS conditional stuff: <condition property="os.iswindows"> <os family="windows" /> </condition> <condition property="os.isunix"> <os family="unix" /> </condition> <target name="setnulldevice" depends="nul,devnull" /> <target name="nul" if="os.iswindows"> <property name="null.device" value="NUL" /> </target> <target name="devnull" if="os.isunix"> <property name="null.device" value="/dev/null" /> </target> -Matt __________________________________ Do you Yahoo!? Yahoo! Mail - More reliable, more storage, less spam http://mail.yahoo.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]