Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2020-07-16 13:47:28 +0300
committerBrecht Van Lommel <brecht@blender.org>2020-07-16 15:26:37 +0300
commit66b48ad8fb3bea4c0b643fe23fd25e70843067cd (patch)
treed3b279a81bf8603ced860f4d4cbe8652912f43c8 /build_files/utils
parentf3ea6a5b28611f693cc595f35f43bb0198450d34 (diff)
Fix git tag warning when running make update after recent changes
Diffstat (limited to 'build_files/utils')
-rwxr-xr-xbuild_files/utils/make_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/utils/make_utils.py b/build_files/utils/make_utils.py
index 9a3d25f4952..e94c8e3550a 100755
--- a/build_files/utils/make_utils.py
+++ b/build_files/utils/make_utils.py
@@ -48,7 +48,7 @@ def git_branch(git_command):
def git_tag(git_command):
# Get current tag name.
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:
return None