Skip to content

Commit

Permalink
add stupid manual print debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
jsstevenson committed Nov 29, 2024
1 parent 7442642 commit 3959e21
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,13 @@ def _get_vrs_submodule_info() -> tuple[str, str, int]:
commit = subprocess.check_output(
["git", "rev-parse", "HEAD"], cwd=vrs_path, text=True
).strip()
print("hey i'm debugging here")
subprocess.run(["git", "fetch", "--tags"])
print("hey i'm debugging here")
tag = subprocess.check_output(
["git", "describe", "--tags", "--abbrev=0"], cwd=vrs_path, text=True
).strip()
print("hey i'm debugging here")
distance = subprocess.check_output(
["git", "rev-list", f"{tag}..HEAD", "--count"],
cwd=vrs_path,
Expand Down

0 comments on commit 3959e21

Please sign in to comment.