mirror of
https://gitlab.com/scemama/EZFIO.git
synced 2024-10-31 19:23:43 +01:00
14 lines
247 B
Python
Executable File
14 lines
247 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
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('Version:'+lines[0].split('=')[1], file=file)
|
|
file.close()
|
|
|
|
|
|
|