[macOS] Remove macOS 10.13 related code in the VE repo (#4494)

This commit is contained in:
Dibir Magomedsaygitov
2021-11-18 17:23:05 +03:00
committed by GitHub
parent bebaaa653c
commit 5ab1cb345e
19 changed files with 54 additions and 979 deletions

View File

@@ -53,13 +53,10 @@ function Build-ToolcacheSection {
$output += New-MDList -Lines (Get-ToolcachePythonVersions) -Style Unordered
$output += New-MDHeader "PyPy" -Level 4
$output += New-MDList -Lines (Get-ToolcachePyPyVersions) -Style Unordered
if( -not $os.IsHighSierra) {
$output += New-MDHeader "Node.js" -Level 4
$output += New-MDList -Lines (Get-ToolcacheNodeVersions) -Style Unordered
$output += New-MDHeader "Go" -Level 4
$output += Get-ToolcacheGoTable
}
$output += New-MDHeader "Node.js" -Level 4
$output += New-MDList -Lines (Get-ToolcacheNodeVersions) -Style Unordered
$output += New-MDHeader "Go" -Level 4
$output += Get-ToolcacheGoTable
return $output
}