On 9/6/2006, at 0:52, Benjamin Jackson wrote:
Changed the command to use the ruby stakeout [...]
You need to redirect stdout/error to /dev/null. TM will wait for the command to close its output channel, before it considers it as done.
find . -name '*.as' -print0|xargs -0 /usr/local/script/ stakeout.rb rake &>/dev/null &
(I believe the above is a safer use of find/xargs, as it will work when file names contain spaces or other input field separator characters)