mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-06 10:05:16 +00:00
Update utils.py
This commit is contained in:
parent
56f93e7b9e
commit
4ca08b3aa3
@ -36,12 +36,11 @@ def get_git_revision_short_hash() -> str:
|
|||||||
Return the short hash of the current commit
|
Return the short hash of the current commit
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
return (
|
output = subprocess.check_output(["git", "rev-parse", "--short", "HEAD"])
|
||||||
subprocess.check_output(["git", "rev-parse", "--short", "HEAD"])
|
if isinstance(output, bytes):
|
||||||
.decode("ascii")
|
return output.decode("ascii").strip()
|
||||||
.strip()
|
return output.strip()
|
||||||
)
|
except subprocess.CalledProcessError:
|
||||||
except:
|
|
||||||
return ""
|
return ""
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user