mirror of
https://github.com/nodejs/node-v0.x-archive.git
synced 2026-04-28 03:01:10 -04:00
12 lines
261 B
Python
12 lines
261 B
Python
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
|