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.
10 lines
332 B
10 lines
332 B
13 years ago
|
import sys,re;
|
||
|
for line in sys.stdin:
|
||
|
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}.0'.format(major, minor, patch)
|