mirror of https://github.com/nodejs/node.git
build: make wscript work with python 2.4
parent
243c218c7a
commit
3aa1975c58
2
wscript
2
wscript
|
@ -241,7 +241,7 @@ def get_node_version():
|
||||||
return "%s.%s.%s%s" % ( node_major_version,
|
return "%s.%s.%s%s" % ( node_major_version,
|
||||||
node_minor_version,
|
node_minor_version,
|
||||||
node_patch_version,
|
node_patch_version,
|
||||||
"-pre" if node_is_release == "0" else ""
|
node_is_release == "0" and "-pre" or ""
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue