2010/4/21 Giulio Troccoli <giulio.trocc...@uk.linedata.com>: > It looks like your post-commit hooks is a ksh, so have you tried adding & at > the end? Like > > ant all -f MDM-Leitfaden/ant_scripts/mdm-leitfaden.xml > /tmp/dita.log 2>&1 &
great! though my fist line is #!/bin/bash, but of course I forgot that additional "&" for putting it into background. First I had only the & in the end for background, but obviously stderr/stdout were kept open then. So redirecting stderr/stdout AND putting it into the background works thanks, Lars