utils: update git describe arguments

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Arksine 2020-08-11 13:00:18 -04:00
parent 7cd22804dd
commit 1d520310ac
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ def get_software_version():
# Obtain version info from "git" program
prog = ('git', '-C', moonraker_path, 'describe', '--always',
'--tags', '--long', '--dirty', "--all")
'--tags', '--long', '--dirty')
try:
process = subprocess.Popen(prog, stdout=subprocess.PIPE,
stderr=subprocess.PIPE)