-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
minor bugsomething is wrong but does not directly affect main functionalitysomething is wrong but does not directly affect main functionality
Description
Right now
Line 107 in b8c4371
| def store_commit_id(version): |
This will not always be the case (eg "main" or "trunk" could be used or even "devel").
Instead the HEAD commit should be obtained from (the pygit2 equivalent) of
id = os.popen(f"git --git-dir {REPO}/.git rev-parse HEAD").read().strip())
with open(dst,"w") as fh:
print(id, file=fh)
Metadata
Metadata
Assignees
Labels
minor bugsomething is wrong but does not directly affect main functionalitysomething is wrong but does not directly affect main functionality