Skip to content

Commit

Permalink
Fix directory used for temporary git blame file (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
rzuckerm authored Apr 8, 2023
1 parent 26a851b commit 3b9375e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

MAJOR = 0
MINOR = 15
PATCH = 0
PATCH = 1

name = "subete"
version = f"{MAJOR}.{MINOR}"
Expand Down
2 changes: 1 addition & 1 deletion subete/repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ def _load_git_data(self) -> None:

# Make sure .git-blame-ignore-revs exists for older versions of git and
# keep track of whether it existed before
blame_path = Path(f"{self._sample_programs_temp_dir.name}/.git-blame-ignore-revs")
blame_path = Path(f"{self._sample_programs_repo_dir}/.git-blame-ignore-revs")
blame_path_exists = blame_path.exists()
blame_path.touch()

Expand Down

0 comments on commit 3b9375e

Please sign in to comment.