mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 21:19:50 +01:00
56098a9c3f
PR-URL: https://github.com/nodejs/node/pull/27381 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Rich Trott <rtrott@gmail.com>
29 lines
723 B
Bash
Executable File
29 lines
723 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Locate python2 interpreter and re-execute the script. Note that the
|
|
# mix of single and double quotes is intentional, as is the fact that
|
|
# the ] goes on a new line.
|
|
_=[ 'exec' '/bin/sh' '-c' '''
|
|
which python2.7 >/dev/null && exec python2.7 "$0" "$@"
|
|
which python2 >/dev/null && exec python2 "$0" "$@"
|
|
exec python "$0" "$@"
|
|
''' "$0" "$@"
|
|
]
|
|
del _
|
|
|
|
import sys
|
|
from distutils.spawn import find_executable as which
|
|
if sys.version_info[:2] != (2, 7):
|
|
sys.stderr.write('Please use Python 2.7')
|
|
|
|
python2 = which('python2') or which('python2.7')
|
|
|
|
if python2:
|
|
sys.stderr.write(':\n\n')
|
|
sys.stderr.write(' ' + python2 + ' ' + ' '.join(sys.argv))
|
|
|
|
sys.stderr.write('\n')
|
|
sys.exit(1)
|
|
|
|
import configure
|