Whenever I execute my subversion post-commit hook it runs successfully but I don't get any output to the console.
My post commit hook calls another script and the other script provides important user feedback. I tried redirecting this way but it didn't work:
sh /path/to/my/script.sh arg >&1
Is there any other way I can accomplish this?