comparison contrib/win32/hg.bat @ 6513:66e87c11447d

Add a batch file driver for Windows
author Paul Moore <p.f.moore@gmail.com>
date Thu, 10 Apr 2008 23:07:54 +0200
parents
children 5096faaa280e
comparison
equal deleted inserted replaced
6511:5c1bb5750558 6513:66e87c11447d
1 @echo off
2 rem Windows Driver script for Mercurial
3
4 setlocal
5 set HG=%~f0
6
7 rem Use a full path to Python (relative to this script) as the standard Python
8 rem install does not put python.exe on the PATH...
9 rem %~dp0 is the directory of this script
10
11 %~dp0..\python "%~dp0hg" %*
12 endlocal