Janu Mohandass is out of the office.

2005-08-11 Thread Janu Mohandass
I will be out of the office starting 08/12/2005 and will not return until 08/16/2005. I will respond to your messages after I come back. For Urgent build related issues, contact Subhrata Parichha. - To unsubscribe, e-mail:

How to find if rexx is installed using ANT

2005-04-04 Thread Janu Mohandass
Hi all, My project has a dependency on Rexx Scripts. I am calling the Rexx Scripts within Ant. Before that I would want to check if users have rexx installed in there systems or not. If not set, I would want to exit out of the ant. How do I achieve this? Thanks in advance. Janu.

Re: AW: Check for Env variables

2005-03-23 Thread Janu Mohandass
lt, which only works, if not set prior. Properties are immutable. 4. Give the output. c:\temp>ant Buildfile: build.xml [echo] output.dir=default c:\temp>set OUTPUT_DIR=other c:\temp>ant Buildfile: build.xml [echo] output.dir=other Jan > -Ursprüngliche Nachricht---

Check for Env variables

2005-03-22 Thread Janu Mohandass
Hi, I am newbie in ANT. My requirement is, if the environment variable is not set , then I want the output to go to the current directory, else the value should be picked up from the environment variable. I hv written the following piece of code,