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:
authorSergey Sharybin <sergey.vfx@gmail.com>2020-03-10 12:23:28 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2020-03-10 12:23:28 +0300
commit9f48852ba405369772eb89a2d25dc7b06d6aa836 (patch)
tree8dac2b109239fa5bd0591e3b2e7006c062fd1ae4 /build_files/buildbot
parent1aa7c4c28a068e15245f1323a8cff53694a3b163 (diff)
Buildbot: Enable version character for development builds
Allows to have 2.82a as a beta version on buildbot.
Diffstat (limited to 'build_files/buildbot')
-rw-r--r--build_files/buildbot/buildbot_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/buildbot/buildbot_utils.py b/build_files/buildbot/buildbot_utils.py
index b99fab78827..369bb28006d 100644
--- a/build_files/buildbot/buildbot_utils.py
+++ b/build_files/buildbot/buildbot_utils.py
@@ -98,7 +98,7 @@ class VersionInfo:
self.is_development_build = False
else:
# Development build
- self.full_version = self.version + '-' + self.hash
+ self.full_version = self.version + self.version_char + '-' + self.hash
self.is_development_build = True
def _parse_header_file(self, filename, define):