Re: [Nant-users] environment::get-variable usage

2005-06-06 Thread Clayton Harbour
CTED] *Sent:* Monday, June 06, 2005 2:08 PM *To:* Kevin Kirkpatrick; nant-users@lists.sourceforge.net *Subject:* RE: [Nant-users] environment::get-variable usage You need single quotes round the variable name, otherwise NAnt will try to evaluate it as a property: value="${environment::get-v

RE: [Nant-users] environment::get-variable usage

2005-06-06 Thread Kevin Kirkpatrick
Kevin Kirkpatrick; nant-users@lists.sourceforge.net Subject: RE: [Nant-users] environment::get-variable usage   You need single quotes round the variable name, otherwise NAnt will try to evaluate it as a property:       I'm pretty sure that the environment variable lookup is not case sensitive so &#

Re: [Nant-users] environment::get-variable usage

2005-06-06 Thread Merrill Cornish
Kevin, Everything inside the ${ ... } will be evaluated UNLESS it is quoted. Since I assume BLOCK is the name of an environment variable rather than of a property to be evaluated, try single quotes around it. Merrill --- This SF.Net email i

RE: [Nant-users] environment::get-variable usage

2005-06-06 Thread Bill Martin
ssage-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Kevin KirkpatrickSent: 06 June 2005 21:57To: nant-users@lists.sourceforge.netSubject: [Nant-users] environment::get-variable usage I have a really stupid question.  Is the correct usage for this function,

[Nant-users] environment::get-variable usage

2005-06-06 Thread Kevin Kirkpatrick
I have a really stupid question.  Is the correct usage for this function, environment::get-variable?       value="${environment::get-variable(BUILD)}"/>           Thanks.