contrib/win32/hg.bat
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
Mon, 04 Mar 2013 10:13:28 +0100
branchstable
changeset 18753 3f59cb1ccc73
parent 12653 5096faaa280e
child 19091 f01a351db791
permissions -rw-r--r--
setup.py: add metadata to register package to PyPI This allows updating PyPI with just 'setup.py register' (assuming the user is an owner or maintainer of the PyPI package).
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6513
66e87c11447d Add a batch file driver for Windows
Paul Moore <p.f.moore@gmail.com>
parents:
diff changeset
     1
@echo off
66e87c11447d Add a batch file driver for Windows
Paul Moore <p.f.moore@gmail.com>
parents:
diff changeset
     2
rem Windows Driver script for Mercurial
66e87c11447d Add a batch file driver for Windows
Paul Moore <p.f.moore@gmail.com>
parents:
diff changeset
     3
66e87c11447d Add a batch file driver for Windows
Paul Moore <p.f.moore@gmail.com>
parents:
diff changeset
     4
setlocal
66e87c11447d Add a batch file driver for Windows
Paul Moore <p.f.moore@gmail.com>
parents:
diff changeset
     5
set HG=%~f0
66e87c11447d Add a batch file driver for Windows
Paul Moore <p.f.moore@gmail.com>
parents:
diff changeset
     6
66e87c11447d Add a batch file driver for Windows
Paul Moore <p.f.moore@gmail.com>
parents:
diff changeset
     7
rem Use a full path to Python (relative to this script) as the standard Python
66e87c11447d Add a batch file driver for Windows
Paul Moore <p.f.moore@gmail.com>
parents:
diff changeset
     8
rem install does not put python.exe on the PATH...
66e87c11447d Add a batch file driver for Windows
Paul Moore <p.f.moore@gmail.com>
parents:
diff changeset
     9
rem %~dp0 is the directory of this script
66e87c11447d Add a batch file driver for Windows
Paul Moore <p.f.moore@gmail.com>
parents:
diff changeset
    10
12653
5096faaa280e windows: handle spaces in path to Python (issue2074)
Benjamin Pollack <benjamin@bitquabit.com>
parents: 6513
diff changeset
    11
"%~dp0..\python" "%~dp0hg" %*
6513
66e87c11447d Add a batch file driver for Windows
Paul Moore <p.f.moore@gmail.com>
parents:
diff changeset
    12
endlocal