docs_version_pragma_check.sh: Remove the special case for versions ending in .99

This commit is contained in:
Kamil Śliwak
2021-01-14 17:35:19 +01:00
parent a39c8e3750
commit c63fd0a1af
+2 -7
View File
@@ -121,13 +121,8 @@ function findMinimalVersion()
if [[ "$version" == "" ]]
then
if [[ "$greater" = true && "$pragmaVersion" =~ 99 ]]
then
printError "Skipping version check for pragma: $pragmaVersion"
else
printError "No release $sign$pragmaVersion was listed in available releases!"
exit 1
fi
printError "No release ${sign}${pragmaVersion} was listed in available releases!"
exit 1
fi
}