> <target name="whatever" if="allOK"> > <target name="whatever" unless="allOK">
But dont forget: <target if|unless> checks whether a property with the given name is set/not-set. <property name="foo" value="true"/> <target name="foo" unless="foo"> <echo>I will be executed</echo> </target> <property name="bar" value="false"/> <target name="bar" if="bar"> <echo>I will be executed</echo> </target> Jan --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]