mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00
Simplify and move getnodeversion.py
This commit is contained in:
parent
e0f10ecfd9
commit
895fa3a56b
3 changed files with 11 additions and 4 deletions
16
tools/getnodeversion.py
Normal file
16
tools/getnodeversion.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
import 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_MAJOR_VERSION', line):
|
||||
major = line.split()[2]
|
||||
if re.match('#define NODE_MINOR_VERSION', line):
|
||||
minor = line.split()[2]
|
||||
if re.match('#define NODE_PATCH_VERSION', line):
|
||||
patch = line.split()[2]
|
||||
|
||||
print '{0:s}.{1:s}.{2:s}'.format(major, minor, patch)
|
Loading…
Add table
Add a link
Reference in a new issue