Skip to content

Commit f482d76

Browse files
committed
Fix revision key
1 parent 7a70d8d commit f482d76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def main():
5252

5353
git_owner, git_name = re.findall(r'^https:\/\/github\.com\/([^\/]+)\/([^\/]+)$', git_remote)[0]
5454

55-
git_commit = str(git_repo.revparse_single("HEAD^").id)
55+
git_commit = str(git_repo.revparse_single("HEAD").id)
5656

5757
# get the project root directory
5858
build_dir = Path(__file__).parent

0 commit comments

Comments
 (0)