Skip to content

Commit

Permalink
fetch all and tags?
Browse files Browse the repository at this point in the history
  • Loading branch information
jsstevenson committed Nov 29, 2024
1 parent e9c5122 commit 5d8b903
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def _get_vrs_submodule_info() -> tuple[str, str, int]:
commit = subprocess.check_output(
["git", "rev-parse", "HEAD"], cwd=vrs_path, text=True
).strip()
subprocess.run(["git", "fetch", "--tags"], cwd=vrs_path)
subprocess.run(["git", "fetch", "--all", "--tags"], cwd=vrs_path)
tag = subprocess.check_output(
["git", "describe", "--tags", "--abbrev=0"], cwd=vrs_path, text=True
).strip()
Expand Down

0 comments on commit 5d8b903

Please sign in to comment.