We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d22f9d1 commit 09b95d9Copy full SHA for 09b95d9
site_scons/libobjcrystbuildutils.py
@@ -29,7 +29,7 @@ def gitinfo():
29
nullfile = open(os.devnull, 'w')
30
kw = dict(stdout=PIPE, stderr=nullfile, cwd=MYDIR,
31
universal_newlines=True)
32
- proc = Popen(['git', 'describe', '--match=v[[:digit:]]*'], **kw)
+ proc = Popen(['git', 'describe', '--match=v[[:digit:]]*', '--tags'], **kw)
33
desc = proc.stdout.read()
34
if proc.wait():
35
_cached_gitinfo = {}
0 commit comments