I want to run an ant background command which deletes something in the background later.
if I'm running it with
<exec spawn="true">
.
The build still waits for the process to end.
How can we run the delete command detached from the main build so the build won't wait for it to end (in both linux and windows)?