Skip to content

Commit

Permalink
Merge branch 'tickets/DM-43700'
Browse files Browse the repository at this point in the history
  • Loading branch information
srp3rd committed Apr 5, 2024
2 parents 0c6ac9b + d59f4d9 commit 581c2fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/sconsUtils/vcs/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def guessVersionName():
if not os.path.exists(".git"):
state.log.warn(f"Cannot guess version without .git directory; will be set to '{name}'.")
else:
name = utils.runExternal("git describe --always --dirty", fatal=False).strip()
name = utils.runExternal("git describe --always --dirty --tags", fatal=False).strip()

return name

Expand Down

0 comments on commit 581c2fe

Please sign in to comment.