Res Pons wrote:
Hi everyone

I'm trying to run a batch file consisted of 3 or more lines below and cd into different build folders of different projects and run a specific ant target as listed below. But the problem is that after the first instance of ant is run successfully, the batch file exits and the subsequent batch commands don't get processed. Is there any way to tell ant not to exit the batch file and continue?



cd c:\workingFolder\proj1\build
ant target

cd c:\workingFolder\proj2\build
ant target

cd c:\workingFolder\proj2\build
ant target


ant.bat is itself a batch file.

to call one .bat file from another, you have to use the call command:


call ant target

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

Reply via email to