Related: #1979488 Add the .el9 default 4 back

This commit is contained in:
Eike Rathke 2021-07-12 11:31:00 +02:00
parent a6cba0fc5a
commit 6cd7f2f743

View File

@ -21,6 +21,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}