Obsolete tag removal commented. Not a productions case.
diff --git "a/scripts/vote_1\133git\135create_rc_tag.sh" "b/scripts/vote_1\133git\135create_rc_tag.sh"
index e642c1b..959ac2a 100644
--- "a/scripts/vote_1\133git\135create_rc_tag.sh"
+++ "b/scripts/vote_1\133git\135create_rc_tag.sh"
@@ -3,17 +3,16 @@
 chmod +x release.properties
 . ./release.properties
 
-echo "Preparing vote ${ignite_version}${rc_name}"
+echo "Preparing tag ${ignite_version}${rc_name}"
 
 cd git
 
-echo "Removing obsolete tag..."
-echo $ignite_version
-echo $rc_name
+git fetch --tags
 
-git fetch --tags 
-git tag -d $ignite_version$rc_name
-git push origin :refs/tags/$ignite_version$rc_name
+# Uncomment to remove tag with the same name
+# echo "Removing obsolete tag..."
+# git tag -d $ignite_version$rc_name
+# git push origin :refs/tags/$ignite_version$rc_name
 
 git status