hg
43 lines
| 1.1 KiB
| text/plain
|
TextLexer
mpm@selenic.com
|
r0 | #!/usr/bin/env python | ||
# | ||||
Matt Mackall
|
r1698 | # mercurial - scalable distributed SCM | ||
mpm@selenic.com
|
r0 | # | ||
Thomas Arendsen Hein
|
r4635 | # Copyright 2005-2007 Matt Mackall <mpm@selenic.com> | ||
mpm@selenic.com
|
r0 | # | ||
Martin Geisler
|
r8225 | # This software may be used and distributed according to the terms of the | ||
Matt Mackall
|
r10263 | # GNU General Public License version 2 or any later version. | ||
Augie Fackler
|
r33897 | from __future__ import absolute_import | ||
mpm@selenic.com
|
r0 | |||
Dan Villiom Podlaski Christiansen
|
r12661 | import os | ||
import sys | ||||
libdir = '@LIBDIR@' | ||||
if libdir != '@' 'LIBDIR' '@': | ||||
if not os.path.isabs(libdir): | ||||
Gregory Szorc
|
r44058 | libdir = os.path.join( | ||
os.path.dirname(os.path.realpath(__file__)), libdir | ||||
) | ||||
Dan Villiom Podlaski Christiansen
|
r12661 | libdir = os.path.abspath(libdir) | ||
sys.path.insert(0, libdir) | ||||
Augie Fackler
|
r39628 | from hgdemandimport import tracing | ||
Gregory Szorc
|
r44058 | |||
Augie Fackler
|
r39628 | with tracing.log('hg script'): | ||
# enable importing on demand to reduce startup time | ||||
try: | ||||
if sys.version_info[0] < 3 or sys.version_info >= (3, 6): | ||||
Gregory Szorc
|
r44058 | import hgdemandimport | ||
hgdemandimport.enable() | ||||
Augie Fackler
|
r39628 | except ImportError: | ||
Gregory Szorc
|
r44058 | sys.stderr.write( | ||
"abort: couldn't find mercurial libraries in [%s]\n" | ||||
% ' '.join(sys.path) | ||||
) | ||||
Augie Fackler
|
r39628 | sys.stderr.write("(check your install and PYTHONPATH)\n") | ||
sys.exit(-1) | ||||
Thomas Arendsen Hein
|
r5197 | |||
Augie Fackler
|
r39628 | from mercurial import dispatch | ||
Gregory Szorc
|
r44058 | |||
Augie Fackler
|
r39628 | dispatch.run() | ||