FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
node/configure at make-commit-msg-safe · sam-github/node · GitHub
sam-github
/
node
Public
forked from
nodejs/node
Notifications
You must be signed in to change notification settings
Fork
1
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
node
/
configure
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
33 lines (30 loc) · 1.31 KB
Breadcrumbs
node
/
configure
Copy path
File metadata and controls
executable file
·
33 lines (30 loc) · 1.31 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!
/bin/sh
#
Locate an acceptable python interpreter and then 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
'
'
'
'
test ${FORCE_PYTHON2} && exec python2 "$0" "$@" # workaround for gclient
which python3.8 >/dev/null && exec python3.8 "$0" "$@"
which python3.7 >/dev/null && exec python3.7 "$0" "$@"
which python3.6 >/dev/null && exec python3.6 "$0" "$@"
which python3.5 >/dev/null && exec python3.5 "$0" "$@"
which python2.7 >/dev/null && exec python2.7 "$0" "$@"
exec python "$0" "$@"
'
'
'
"
$0
"
"
$@
"
]
del _
import sys
from distutils.spawn import find_executable
print(
'
Node.js configure: Found Python {0}.{1}.{2}...
'
.format(
*
sys.version_info))
acceptable_pythons =
((
3
,
8
)
,
(
3
,
7
)
,
(
3
,
6
)
,
(
3
,
5
)
,
(
2
,
7
))
if
sys.version_info[:2]
in
acceptable_pythons:
import configure
else:
python_cmds = [
'
python{0}.{1}
'
.format(
*
vers)
for
vers
in
acceptable_pythons]
sys.stderr.write(
'
Please use {0}.\n
'
.format(
'
or
'
.join(python_cmds)))
for
python_cmd
in
python_cmds:
python_cmd_path = find_executable(python_cmd)
if
python_cmd_path and
'
pyenv/shims
'
not
in
python_cmd_path:
sys.stderr.write(
'
\t{0} {1}\n
'
.format(python_cmd_path,
'
'
.join(sys.argv[:1])))
sys.exit(1)
Back
|
FazBrowse Home
|
New Git URL