I'm using a svn apache module to manage my repos on a webserver and tartoise svn for interacting with it.
I wanted to automate updating the working copy on the server whenever I commit something so that I don't have to manualy remote desktop on the server and run update manualy.
For that I created a simple post-commit hook on the repo
echo %username% >> C:\debug.txt
svn update F:\wampserver64\www\netcity\maintenance\ >> C:\debug.txt
THe problem is that i can no longer commit any changes to the repo. Commit just hangs after reaching 100% and the ok button is grayed out. Afterwards the commited files are in a locked state i both the client and server and I have to cleanup and update manualy on both stations. The echo %username% is for debugging purposes. I suspect it might be a permission problem so i eched the username svn runs as. This is the output:
XIBM$
Updating 'F:\wampserver64\www\netcity\maintenance':
XIBM$ is not even a username. it's the name of the server. If run manualy, the .bat hook runs ok and returns a reaonable output:
liviu.gelea
Updating 'F:\wampserver64\www\netcity\maintenance':
At revision 19.
I've tried setting full permissions for XIBM/users, authentificated users, administrator, guests and virtually everything that moves on the server but with no luck. so any help is highly apreciated.