-----Original Message-----
From: sukanya [mailto:[EMAIL PROTECTED]
Sent: Friday, October 31, 2008 8:48 AM
To: [email protected]
Subject: Multiple conditions satisfying in an ant target
/*
[...]
<condition property="iswow">
<equals arg1="wow" arg2="wow" trim="true"/>
</condition>
<condition property="isbad">
<equals arg1="bad" arg2="bad" trim="true"/>
</condition>
</target>
<target name="antcall" unless="iswow" >
<echo>Start something new</echo>
</target>
Here how do i inclue isbad also as an unless condition to the same target
antcall?
*/
The unless/if attributes from target takes only only one value, so you have
to combine your conditions like that =
<condition property="yourcondition">
<and>
<equals arg1="wow" arg2="wow" trim="true"/>
<equals arg1="bad" arg2="bad" trim="true"/>
</and>
</condition>
<target name="antcall" unless="yourcondition" >
<echo>Start something new</echo>
</target>
Regards, Gilbert
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]