mirror of
https://gitlab.com/scemama/EZFIO.git
synced 2024-11-12 17:13:42 +01:00
14 lines
243 B
Python
Executable File
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()
|
|
|
|
|
|
|