I created a post-commit hook which inform the user of some others information. I put in my code:
REPOS="$1"
REV="$2"
TXN_NAME="$3"
SVNSYNC='/opt/collabnet/csvn/bin/svnsync';
echo "my message" >&0;
echo "Your commit has been performed successfully." 1>&2;
exit 1;
Could you please told me why for these messages we can display it only if I put "exit 1"
?
Is there any other way to do it?