[Ubuntu] Add Ruby 3.1 to 22.04 toolcache (#5486)

This commit is contained in:
Mikhail Koliada
2022-05-04 21:07:06 +02:00
committed by GitHub
parent b86d5523dd
commit ef69c49622
2 changed files with 10 additions and 4 deletions

View File

@@ -56,10 +56,8 @@ function Build-CachedToolsSection {
$output += New-MDHeader "Python" -Level 4
$output += New-MDList -Lines (Get-ToolcachePythonVersions) -Style Unordered
if ((Test-IsUbuntu18) -or (Test-IsUbuntu20)) {
$output += New-MDHeader "Ruby" -Level 4
$output += New-MDList -Lines (Get-ToolcacheRubyVersions) -Style Unordered
}
$output += New-MDHeader "Ruby" -Level 4
$output += New-MDList -Lines (Get-ToolcacheRubyVersions) -Style Unordered
return $output
}