From b24c854bcfa11971fcc3dce7d3c1ba3e9ececb6c Mon Sep 17 00:00:00 2001
From: Noah Hilverling <noah.hilverling@icinga.com>
Date: Mon, 9 Mar 2020 14:04:09 +0100
Subject: [PATCH] Fix snapshot version

---
 get_snapshot | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/get_snapshot b/get_snapshot
index c0d5bcb..6ecf01a 100755
--- a/get_snapshot
+++ b/get_snapshot
@@ -58,9 +58,9 @@ fi
 
 git_version=$(git describe --tags "${UPSTREAM_GIT_BRANCH}")
 
-# TEMP: Fixup version for 2.11.2 - so that it is displayed as 2.11.2
+# TEMP: Fixup version for 2.11.3 - so that it is displayed as 2.11.3
 if [[ "$git_version" = v2.11.0* ]]; then
-    git_version="$(echo "$git_version" | sed s/2.11.0/2.11.2/)"
+    git_version="$(echo "$git_version" | sed s/2.11.0/2.11.3/)"
 fi
 
 if [ `echo "$git_version" | grep -v -E '(g[0-9a-f]+)$'` ]; then
-- 
GitLab