| Author |
How to make command to return to my ant build file
|
Anselm Paulinus
Ranch Hand
Joined: Sep 05, 2003
Posts: 389
|
|
Have an ant file with a <exec> task; command does not return to my build file after executing the <exec> task. What do I do to to get the command back to my build file? Thanks in advance.
|
 |
Christophe Verré
Sheriff
Joined: Nov 24, 2005
Posts: 14672
|
|
Set spawn="true" in the exec task : <exec spawn="true" ...
|
[My Blog]
All roads lead to JavaRanch
|
 |
Rajesh Nagaraju
Ranch Hand
Joined: Nov 27, 2003
Posts: 41
|
|
|
I had the same problem in my previous project, where I had to start a server, the spawn did not work.. I had a simple work around, I had a shell script that would run the process, all my ant script did was to execute this shell scripts
|
 |
 |
|
|
subject: How to make command to return to my ant build file
|
|
|