I've put together the batch file below; I don't have much experience with batch files and I can't figure out why the file fails with an error message stating that the:
DO command was unexpected.
Looking at the following code, does anyone know what I did wrong? Thanks.
@ECHO OFF
REM Set arguments supplied by Subversion
SET REPOS = %1
SET REV = %2
REM Set working directory path
SET WORKSPACE = D:\apache\htdocs
REM Assign changes to variable
SET CHANGES = svnlook changed %REPOS% -r %REV%
REM Update only changed files
FOR /f %%a IN %CHANGES% DO svn update %%a