Skip to content
Snippets Groups Projects
Commit 6ff59431 authored by Brecht Van Lommel's avatar Brecht Van Lommel
Browse files

Fix git tag warning when running make update after recent changes

parent 9c41744e
No related branches found
No related tags found
No related merge requests found
...@@ -48,7 +48,7 @@ def git_branch(git_command): ...@@ -48,7 +48,7 @@ def git_branch(git_command):
def git_tag(git_command): def git_tag(git_command):
# Get current tag name. # Get current tag name.
try: try:
tag = subprocess.check_output([git_command, "describe", "--exact-match"]) tag = subprocess.check_output([git_command, "describe", "--exact-match"], stderr=subprocess.STDOUT)
except subprocess.CalledProcessError as e: except subprocess.CalledProcessError as e:
return None return None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment