I am trying to implement a post-commit hook to update a working copy. As far as i can figure out the post commit hook is being runned ( i wrote something in a file to test it out ) but the update command was not runned
At first i did
cd /home/user/working/copy
svn update
but that didn't work, then i read you have to give the full path to svn:
cd /home/user/working/copy
/usr/bin/svn update
but still it failed to work.
I changed permisions to 777 and have runned the script in an empty enviroment ... and it works.