Skip to content

Commit

Permalink
fix: Fix baked-in commit SHA bis (#20348)
Browse files Browse the repository at this point in the history
  • Loading branch information
Twixes authored Feb 14, 2024
1 parent 9f838f9 commit 8d467d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion posthog/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Docker containers should have a commit.txt file in the base directory with the git
# commit hash used to generate them.
with open("commit.txt") as f:
_git_commit_baked_in = f.read()
_git_commit_baked_in = f.read().strip()
except FileNotFoundError:
pass

Expand Down

0 comments on commit 8d467d2

Please sign in to comment.