Re: Result: 1

2005-08-23 Thread Steve Loughran
Dewey, John wrote: Hmm OK. I guess I'm a little confused now. I thought that the return codes were determined by the operating system as the ant manual http://ant.apache.org/manual/CoreTasks/exec.html said that "error code 2 means 'no such program'. Is this meaning of error code 2 simply a conven

Re: Result: 1

2005-08-22 Thread Andrew Goktepe
nts are it gives the same > error when all I had is 1 line: > java proj.client.Client > > I know I could run the above command in a Java task, it is trivial > because I was trying to eliminate the contents of the bat file as the > troublemaker. > > -Jon > > -Original Me

Re: Result: 1

2005-08-22 Thread Ron Wheeler
ndrew Goktepe [mailto:[EMAIL PROTECTED] Sent: Monday, August 22, 2005 5:49 PM To: Ant Users List Subject: Re: Result: 1 The external program that you called from your Ant script returned a value of 1. If you're interested in what that error means you'll have to examine that program

RE: Result: 1

2005-08-22 Thread Dewey, John
e bat file as the troublemaker. -Jon -Original Message- From: Andrew Goktepe [mailto:[EMAIL PROTECTED] Sent: Monday, August 22, 2005 5:49 PM To: Ant Users List Subject: Re: Result: 1 The external program that you called from your Ant script returned a value of 1. If you're interested

Re: Result: 1

2005-08-22 Thread Andrew Goktepe
The external program that you called from your Ant script returned a value of 1. If you're interested in what that error means you'll have to examine that program. Ant is just relaying it back to you. You could also provide the calling task and more of the output if you want to dig further. -