Re: Running ant from a windows batch file

2007-04-12 Thread James Carr
Thanks! On 4/12/07, Hariharasudhan R <[EMAIL PROTECTED]> wrote: Hi James, When u invoke one batch file from another the remaining of the batch file will not execute. This isnt anything related to ant. Its just a characteristic of windows batch files.. To make the remaining of the batch file ex

Re: Running ant from a windows batch file

2007-04-12 Thread Hariharasudhan R
Hi James, When u invoke one batch file from another the remaining of the batch file will not execute. This isnt anything related to ant. Its just a characteristic of windows batch files.. To make the remaining of the batch file execure instead of directly invoking ant use call ant.. e..g Instea

Re: Running Ant from a Windows batch file

2004-10-19 Thread Sebastian Redl
Rhino wrote: I would like to be able to run an Ant (1.6.1) script from a Windows batch file on XP. Unfortunately, my Ant script contains tasks and they are messing me up. Here is my batch file, cond3.bat: rem Batch file to run an Ant script. rem This va

Re: Running Ant from a Windows batch file

2004-10-19 Thread Rhino
MessageI was hoping it would be that simple ;-) Thanks, my batch file now works perfectly! Rhino - Original Message - From: Dick, Brian E. To: Ant Users List Sent: Tuesday, October 19, 2004 10:48 AM Subject: RE: Running Ant from a Windows batch file Since the ant

RE: Running Ant from a Windows batch file

2004-10-19 Thread Dick, Brian E.
Title: Message Since the ant command on Windows is a batch file, you have to "call" it when you use it from another batch file. Change you batch file to   call ant -f cond3.xml     -Original Message-From: Rhino [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 10:44