1
0
Fork 0
mirror of synced 2024-06-22 04:10:30 +12:00

Update config.py to use fallback git head method

This commit is contained in:
Nick Sweeting 2023-12-18 19:27:52 -08:00 committed by GitHub
parent 5805e18380
commit 487e560e32
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -398,7 +398,14 @@ def get_commit_hash(config) -> Optional[str]:
commit_hash = git_dir.joinpath(ref).read_text().strip()
return commit_hash
except Exception:
return None
pass
try:
return list((config['PACKAGE_DIR'] / '../.git/refs/heads/').glob('*'))[0].read_text().strip()
except Exception:
pass
return None
def get_build_time(config) -> str:
if config['IN_DOCKER']: