dcs-retribution/game/version.py
2020-11-13 18:46:59 -08:00

9 lines
204 B
Python

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