view easyhg-merge.bat @ 322:913d213dd427

Remove message about updating to bring changes into the working copy: it isn't always true (e.g. if you have to do a merge next)
author Chris Cannam
date Wed, 02 Mar 2011 16:29:17 +0000
parents 256138a4ed0e
children d2e4bf428cfc
line wrap: on
line source
@echo off
setlocal enableextensions
setlocal enabledelayedexpansion
set mypath=%~dp0
set kdiff=kdiff3.exe
set found=
set SEARCH=%mypath%;%PATH%
:loop
for /F "delims=; tokens=1*" %%e in ("%SEARCH%") do (
    if exist "%%e\%kdiff%" (
        set found=%%e\%kdiff%
        goto done;
    )
    set SEARCH=%%f
)
if not "%SEARCH%"=="" goto loop;
:done
if "%found%"=="" (
    echo. "Failed to find kdiff.exe in path"
) else (
    "%found%" "%~2" "%~1" "%~3" -o "%~1"
)