summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJukka Jokiniva <jukka.jokiniva@qt.io>2018-10-03 09:16:04 +0300
committerJukka Jokiniva <jukka.jokiniva@qt.io>2023-04-14 11:51:56 +0000
commit013bd468c5a1337d82e31f4988067055bbd728a9 (patch)
treecc035805979f5bf66f70fa62990608dc8275900c
parent23006dfe6597bc706fa1200a8f6da30d9dbbe0d6 (diff)
Modify Gerrit version string to indicate that this is a Qt fork
And also: Use postfix for QtFork in version number There are tools parsing the version number and using QtFork-version breaks them. It's generally against conventions (semver). To make maintaining these changes easier, Ie1b91539c2fcb8fe66a7da119e4277a88ef4d291 was merged into this change. Change-Id: I2248e110a327ffc1bb1cf033a6c319117df12d26 Reviewed-by: Daniel Smith <Daniel.Smith@qt.io>
-rw-r--r--tools/workspace_status.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/workspace_status.py b/tools/workspace_status.py
index bedc051f28..9615bef765 100644
--- a/tools/workspace_status.py
+++ b/tools/workspace_status.py
@@ -35,7 +35,7 @@ def revision(directory, parent):
os.chdir(parent)
-print("STABLE_BUILD_GERRIT_LABEL %s" % revision(ROOT, ROOT))
+print("STABLE_BUILD_GERRIT_LABEL %s-QtFork" % revision(ROOT, ROOT))
for kind in ['modules', 'plugins']:
kind_dir = os.path.join(ROOT, kind)
for d in os.listdir(kind_dir):