Improve git_describe() fix 1 (#2635)
Add stderr=subprocess.STDOUT to catch error messages.pull/2636/head
parent
518c09578e
commit
2e95cf3d79
|
@ -55,10 +55,9 @@ def git_describe(path=Path(__file__).parent): # path must be a directory
|
||||||
# return human-readable git description, i.e. v5.0-5-g3e25f1e https://git-scm.com/docs/git-describe
|
# return human-readable git description, i.e. v5.0-5-g3e25f1e https://git-scm.com/docs/git-describe
|
||||||
s = f'git -C {path} describe --tags --long --always'
|
s = f'git -C {path} describe --tags --long --always'
|
||||||
try:
|
try:
|
||||||
r = subprocess.check_output(s, shell=True).decode()[:-1]
|
return subprocess.check_output(s, shell=True, stderr=subprocess.STDOUT).decode()[:-1]
|
||||||
return '' if r.startswith('fatal: not a git repository') else r
|
|
||||||
except subprocess.CalledProcessError as e:
|
except subprocess.CalledProcessError as e:
|
||||||
return ''
|
return '' # not a git repository
|
||||||
|
|
||||||
|
|
||||||
def select_device(device='', batch_size=None):
|
def select_device(device='', batch_size=None):
|
||||||
|
|
Loading…
Reference in New Issue