hgproc.bat
author TK Soh <teekaysoh@yahoo.com>
Sun, 13 Jul 2008 09:53:18 +0100
changeset 1177 e2211f1985b0
parent 361 dfaa2d2e4705
permissions -rwxr-xr-x
update release note for 0.4rc3

::
:: Win32 batch file to handle TortoiseHg external proc calls
::

@echo off
setlocal

:: Look in the registry for TortoiseHg location
for /f "skip=2 tokens=3*" %%A in (
    '"reg query "HKEY_LOCAL_MACHINE\SOFTWARE\TortoiseHg" /ve 2> nul"' ) do set TortoisePath=%%B
if "%TortoisePath%"=="" (goto :notfound) else (goto :hgproc)

:hgproc
python "%TortoisePath%\hgproc.py" %*
goto end

:notfound
echo hgproc: cannot find TortoiseHg location in the registry.

:end