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 <brechtvanlommel@gmail.com>2019-10-09 15:41:34 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-10-09 16:09:53 +0300
commit7e7b2051371d8efae33b222ff667eed862eee3af (patch)
treee1d94656845b3530238ab8fe4ca66bbbe601a0d4 /build_files/utils/make_test.py
parent6c9178b183f5267e07a6c55497b6d496e468a709 (diff)
Build: prepare "make update" to work for new release cycle branching
Checking out release branches in submodules, and printing some more informative messages when that fails.
Diffstat (limited to 'build_files/utils/make_test.py')
-rwxr-xr-xbuild_files/utils/make_test.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/build_files/utils/make_test.py b/build_files/utils/make_test.py
index a8a6afc43cc..309ab36ecdd 100755
--- a/build_files/utils/make_test.py
+++ b/build_files/utils/make_test.py
@@ -39,7 +39,8 @@ if make_utils.command_missing(git_command):
sys.exit(1)
# Test if we are building a specific release version.
-release_version = make_utils.git_branch_release_version(git_command)
+branch = make_utils.git_branch(git_command)
+release_version = make_utils.git_branch_release_version(branch)
lib_tests_dirpath = os.path.join('..', 'lib', "tests")
if not os.path.exists(lib_tests_dirpath):