Improve version handling
This commit is contained in:
parent
6475714369
commit
3b767eae11
3 changed files with 18 additions and 8 deletions
12
app/utils/version.py
Normal file
12
app/utils/version.py
Normal 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"
|
Loading…
Add table
Add a link
Reference in a new issue