10
0
mirror of https://gitlab.com/scemama/EZFIO.git synced 2024-08-08 05:20:17 +02:00
EZFIO/git-tools/commit-msg
2018-05-02 19:42:30 +02:00

14 lines
243 B
Python
Executable File

#!/usr/bin/python2
import os,sys
ROOT = os.path.dirname(__file__)+'/../../'
file = open(ROOT+'version','r')
lines = file.readlines()
file.close()
file = open(sys.argv[1],'a')
print >>file, 'Version:'+lines[0].split('=')[1]
file.close()