mirror of https://github.com/lukechilds/node.git
Nathan Rajlich
13 years ago
2 changed files with 21 additions and 8 deletions
@ -0,0 +1,11 @@ |
|||
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 |
Loading…
Reference in new issue