diff --git a/get_snapshot b/get_snapshot
index 25289a5d8aa9dfd04c14edabc03d416acd4bec6b..fc10f65db8e0678858a8efce6a8905be41cabebf 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."