I try to add a post-commit hook to my VisualSVN Server. After a commit i need to checkout the whole project.
I do the following in the commit-hook:
"%VISUALSVN_SERVER%bin\svn.exe" checkout http://Server.local.myServer:82/svn/Project/ D:/Projects/xampp/htdocs/Data/Project/Data --non-interactive --force --username Administrator --password xxx
If i write this in my CMD, it work's very well. But if I commit my project in my client program, I get always the same error:
Warning: post-commit hook failed (exit code 1) with output:
svn: E720005: Error resolving case of 'D:\Projects\xampp\htdocs\Data\Project\Data'
What can i do :( ? Thanks for your help!