On Tue, 2005-07-19 at 22:07 -0400, James Black wrote: > This is the error I get: > Exception caught: java.lang.IllegalArgumentException: Unknown command > line argument: -o filename.tini
You should carefully read the ant manual for <java> re the difference between <arg value= and <arg line= Using value= is equivalent to quoting that value on the command line: java "-o filename.tini" vs java -o filename.tini try <arg value="-o"/> <arg value="filename.tini"/> .... Regards, Simon --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]