projects
/
platform
/
upstream
/
nodejs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
243c218
)
build: make wscript work with python 2.4
author
Ben Noordhuis
<info@bnoordhuis.nl>
Mon, 19 Sep 2011 14:43:53 +0000
(16:43 +0200)
committer
Ben Noordhuis
<info@bnoordhuis.nl>
Mon, 19 Sep 2011 14:44:03 +0000
(16:44 +0200)
wscript
patch
|
blob
|
history
diff --git
a/wscript
b/wscript
index 47144a468bc3377ca5ee014498bb2b7250a842f9..bc8d25bd465bb8e4463b4cf533b35aa254f6747e 100644
(file)
--- a/
wscript
+++ b/
wscript
@@
-241,7
+241,7
@@
def get_node_version():
return "%s.%s.%s%s" % ( node_major_version,
node_minor_version,
node_patch_version,
-
"-pre" if node_is_release == "0" else
""
+
node_is_release == "0" and "-pre" or
""
)