Kiln » TortoiseHg » TortoiseHg
Clone URL:  
hgproc.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
:: :: 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