Hi Gilbert,

It works!. I forgot to mention tat either one of these these conditions may
be false and still should work. I replaced <and> with <or> and that also
works :) thanks so much for your timely help.



Rebhan, Gilbert wrote:
> 
> 
> -----Original Message-----
> From: sukanya [mailto:[EMAIL PROTECTED]
> Sent: Friday, October 31, 2008 8:48 AM
> To: user@ant.apache.org
> 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]
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Multiple-conditions-satisfying-in-an-ant-target-tp20261337p20261787.html
Sent from the Ant - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to