mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
7 lines
197 B
Python
7 lines
197 B
Python
import os
|
|
|
|
for line in open("CHANGELOG.md").readlines():
|
|
if (line.startswith("#### Version")):
|
|
print(line.split(" ")[3])
|
|
os.environ["VERSION"] = line.split(" ")[3]
|
|
break |