We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0c6ac9b + d59f4d9 commit 581c2feCopy full SHA for 581c2fe
python/lsst/sconsUtils/vcs/git.py
@@ -24,7 +24,7 @@ def guessVersionName():
24
if not os.path.exists(".git"):
25
state.log.warn(f"Cannot guess version without .git directory; will be set to '{name}'.")
26
else:
27
- name = utils.runExternal("git describe --always --dirty", fatal=False).strip()
+ name = utils.runExternal("git describe --always --dirty --tags", fatal=False).strip()
28
29
return name
30
0 commit comments