Fix crash when you have repository with no tags (like a forked repo) (#343)

This commit is contained in:
Michel Roux 2022-09-09 18:48:10 +02:00 committed by GitHub
parent f098136747
commit 6f837cd50d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -457,7 +457,7 @@ def get_snapshot_version():
try:
ret = subprocess.check_output(["git", "describe", "--tags"]).strip()
ver = ret.decode("utf-8")
except FileNotFoundError:
except (FileNotFoundError, subprocess.CalledProcessError):
try:
with open(os.path.join(root_dir, ".git/refs/heads/master")) as f:
ver = "g" + f.read()[:7]