From ddb3ad700d45ad64f746845285dee985606b8f17 Mon Sep 17 00:00:00 2001
From: Markus Frosch <markus.frosch@icinga.com>
Date: Tue, 5 Nov 2019 10:45:57 +0100
Subject: [PATCH] Fix snapshot versions for 2.11.0

---
 get_snapshot | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/get_snapshot b/get_snapshot
index 25289a5..fc10f65 100755
--- a/get_snapshot
+++ b/get_snapshot
@@ -57,6 +57,12 @@ if [ -z "$UPSTREAM_GIT_NOREPO" ]; then
 fi
 
 git_version=$(git describe --tags "${UPSTREAM_GIT_BRANCH}")
+
+# TEMP: Fixup version for 2.11.0 - so that it is newer than 2.11.0+rc1
+if [[ "$git_version" = v2.11.0* ]]; then
+    git_version="$(echo "$git_version" | sed s/2.11.0/2.11.1/)"
+fi
+
 if [ `echo "$git_version" | grep -v -E '(g[0-9a-f]+)$'` ]; then
 	echo "This is a release tagged commit and does not fit the naming scheme, it will confuse the packaging server.
 It's safer to wait for the next commit. Have a nice day."
-- 
GitLab