Related: #1979490 Add the .el9 default 4 back

This commit is contained in:
Eike Rathke 2021-07-14 16:03:55 +02:00
parent cdadaae3a0
commit 2c3571fd90
1 changed files with 4 additions and 0 deletions

View File

@ -20,6 +20,10 @@ function dist_to_rhel_minor(str, start)
if match then
return 5
end
match = string.match(str, ".el9")
if match then
return 4
end
return -1
end}