mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
261 B
12 lines
261 B
12 years ago
|
import sys,os,re
|
||
|
|
||
|
node_version_h = os.path.join(os.path.dirname(__file__), '..', 'src',
|
||
|
'node_version.h')
|
||
|
|
||
|
f = open(node_version_h)
|
||
|
|
||
|
for line in f:
|
||
|
if re.match('#define NODE_VERSION_IS_RELEASE', line):
|
||
|
release = int(line.split()[2])
|
||
|
print release
|