Buildbot: Enable version character for development builds

Allows to have 2.82a as a beta version on buildbot.
This commit is contained in:
Sergey Sharybin
2020-03-10 10:23:28 +01:00
parent 1aa7c4c28a
commit 9f48852ba4

View File

@@ -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):