Henry Hartley wrote: >I have VisualSVN 2.1.9 running on a Windows Server 2008. >[...] >The hook file, which is meant to update a checked out version of a web site >located >where the web server expects it, has the following three lines (not counting >comments, >also, the last two lines below are one line in the hook): > >>REPOS="$1" >>REV="$2" >>"C:\Program Files (x86)\VisualSVN Server\bin\svn" update "$REPOS" >> D:/websites/wwwsite1
that doesn't look like a windows batch file to me. You sure that runs from the windows command line? Doing so on win xp gives me errors about the "REPOS=$1" and "REV=$2" lines. And the when I correct the syntax the call to svn results in svn trying to update $REPOS (literally!) and D:/Websites/wwwsite1 Anyway, the syntax of the update command is: svn up <path to working copy> no repository url/path required/allowed. -- Lorenz