AW: ant property not set question

2007-04-18 Thread Jan.Materne
An: Ant Users List >Betreff: RE: ant property not set question > >Forget about is.dev.home, you don't need it. Just use the environment >variable only... > >message="IS_DEV_HOME/is.dev.home variable >is not set."/> > >-Rob Anderson > > >> -

RE: ant property not set question

2007-04-18 Thread Anderson, Rob (Global Trade)
Forget about is.dev.home, you don't need it. Just use the environment variable only... -Rob Anderson > -Original Message- > From: Philip Swenson [mailto:[EMAIL PROTECTED] > Sent: Friday, April 13, 2007 1:06 PM > To: user@ant.apache.org > Subject: ant property not

Re: ant property not set question

2007-04-16 Thread Dominique Devienne
On 4/16/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: This works for me: '${is.dev.home}' Ah, I forgot about that one! Thanks, it's simpler. Now that you mention it, I think I've even used it in the past. Thanks Jan. --DD -

AW: ant property not set question

2007-04-16 Thread Jan.Materne
This works for me: '${is.dev.home}' Jan >-Ursprüngliche Nachricht- >Von: Dominique Devienne [mailto:[EMAIL PROTECTED] >Gesendet: Freitag, 13. April 2007 23:18 >An: Ant Users List >Betreff: Re: ant

Re: ant property not set question

2007-04-13 Thread Dominique Devienne
On 4/13/07, Philip Swenson <[EMAIL PROTECTED]> wrote: I have a property that is declared like this: You must wrap your above inside a , to only set is.dev.home when it's not already set, and only when IS_DEV_HOME env. var does exist. Or use Ant-Contrib's to avoid the additional , with th

ant property not set question

2007-04-13 Thread Philip Swenson
I have a property that is declared like this: So if an environment variable is set then the value gets set. However if a build.properties file exists, this value can be overridden in the properties file like : is.dev.home=c:/blah This works fine Howeverk, I want to validate t