EZFIO/git-tools/post-commit

18 lines
326 B
Plaintext
Raw Normal View History

2020-01-27 11:32:17 +01:00
#!/usr/bin/python3
2014-08-26 15:04:22 +02:00
import os
ROOT = os.path.dirname(__file__)+'/../../'
file = open(ROOT+'version','r') ;
lines = file.readlines() ;
file.close() ;
2020-01-27 11:32:17 +01:00
v = list(map(int,lines[0].split('=')[1].split('.')));
2014-08-26 15:04:22 +02:00
v[2] += 1
lines[0] = "VERSION=%d.%d.%d\n"%tuple(v)
file = open(ROOT+'version','w')
file.writelines(lines)
file.close()