dcs-retribution/game/version.py
2020-11-14 21:32:27 +01:00

9 lines
196 B
Python

from pathlib import Path
#: Current version of Liberation.
VERSION = "2.2.0"
if Path("buildnumber").exists():
with open("buildnumber", "r") as file:
VERSION += f"-{file.readline()}"