This commit is contained in:
involution 2024-11-19 05:26:27 -05:00
parent db5e5b7e70
commit cc0737beef

View file

@ -268,12 +268,12 @@ async def get_version_real(
if conf.get('use_commit_info', False):
commit_count = await get_commit_count(url, headers)
version = data[0]['commit']['committer']['date'].rstrip('Z').replace('-', '').replace(':', '').replace('T', '.')
version = f"{version}.r{commit_count}.g{data[0]['sha'][:9]}"
print(f"{version}")
return RichResult(
# YYYYMMDD.HHMMSS
version = data[0]['commit']['committer']['date'].rstrip('Z').replace('-', '').replace(':', '').replace('T', '.'),
version = f"{version}.r{commit_count}.g{data[0]['sha'][:9]}",
revision = data[0]['sha'],
url = data[0]['html_url'],
)