* subversion/svn/main.c
[svn.git] / contrib / client-side / diffwrap.bat
blobafd699cc1d4717dca39a90e34163b2bc5c69691b
1 @ECHO OFF\r
2 \r
3 REM Configure your favorite diff program here.\r
4 SET DIFF="C:\Program Files\Funky Stuff\My Diff Tool.exe"\r
5 \r
6 REM Subversion provides the paths we need as the sixth and seventh \r
7 REM parameters.\r
8 SET LEFT=%6\r
9 SET RIGHT=%7\r
11 REM Call the diff command (change the following line to make sense for\r
12 REM your merge program).\r
13 %DIFF% --left %LEFT% --right %RIGHT%\r
15 REM Return an errorcode of 0 if no differences were detected, 1 if some were.\r
16 REM Any other errorcode will be treated as fatal.\r