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 13:49:10 +0300
commit6ff5943109eb631540bd6e9014d88196c839bca6 (patch)
tree7ff88e450c717161ac87d13dde5bfa06b324708f
parent9c41744ef494d743a2e8c5f778360c47fdff439b (diff)
Fix git tag warning when running make update after recent changes
-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