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>2022-05-30 10:31:27 +0000
commitf673b4c01eff457c8bde06feb8335fbf2d96d6ce (patch)
treed40cca137ef4a0ea7086c9daf83d7828e78f17af
parent056ee1a9e023ca25824245036b8f655cd478b849 (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):