I have a Windows Server with Visual SVN Server to store our repositories. Also on this server is our test copy.
I'm trying to set up a simple SVN post commit, so it automatically updates the test copy every time I commit something
In Visual SVN, in post-commit hooks, I configured this as
"C:\Program Files (x86)\VisualSVN Server\bin\updatescripts.bat" D:\inetpub\TESTCOPY
Then this batch file has a simple update like this
PATH=%PATH%;"C:\Program Files (x86)\VisualSVN Server\bin\"
svn update %1
If I run the batch file on the server, double-clicking on it or from the command line works fine. When I did something from my laptop, it freezes and does not give me any error and blocks a test copy, so I need to log in and start cleaning.
The Visual SVN service runs as a network service, and this aacount has full access to the bin folder and test copy on the server.
, svn update post, -?