CI Changes
This commit is contained in:
committed by
aerinon
parent
54858500e5
commit
ca40f87daa
17
source/classes/appversion.py
Normal file
17
source/classes/appversion.py
Normal file
@@ -0,0 +1,17 @@
|
||||
import os
|
||||
|
||||
from Main import __version__
|
||||
DR_VERSION = __version__
|
||||
|
||||
def write_appversion():
|
||||
APP_VERSION = DR_VERSION
|
||||
if "-" in APP_VERSION:
|
||||
APP_VERSION = APP_VERSION[:APP_VERSION.find("-")]
|
||||
APP_VERSION_FILE = os.path.join(".","resources","app","meta","manifests","app_version.txt")
|
||||
with open(APP_VERSION_FILE,"w") as f:
|
||||
f.seek(0)
|
||||
f.truncate()
|
||||
f.write(APP_VERSION)
|
||||
|
||||
if __name__ == "__main__":
|
||||
write_appversion()
|
||||
Reference in New Issue
Block a user