1
0
mirror of https://git.sr.ht/~tsileo/microblog.pub synced 2025-06-05 21:59:23 +02:00

Improve version handling

This commit is contained in:
Thomas Sileo
2022-08-24 09:02:20 +02:00
parent 6475714369
commit 3b767eae11
3 changed files with 18 additions and 8 deletions

12
app/utils/version.py Normal file
View File

@ -0,0 +1,12 @@
import subprocess
def get_version_commit() -> str:
try:
return (
subprocess.check_output(["git", "rev-parse", "--short=8", "v2"])
.split()[0]
.decode()
)
except Exception:
return "dev"