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

This commit is contained in:
Kamil Śliwak 2021-01-14 14:44:11 +01:00
parent a39c8e3750
commit c63fd0a1af

View File

@ -121,14 +121,9 @@ 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!"
printError "No release ${sign}${pragmaVersion} was listed in available releases!"
exit 1
fi
fi
}
printTask "Verifying that all examples from the documentation have the correct version range..."