Install PyPy from official site instead of NPM for Ubuntu (#879)

* install PyPy from official site
This commit is contained in:
Aleksandr Chebotov
2020-05-18 11:07:37 +03:00
committed by GitHub
parent a8f49b6630
commit 47c7968b9d
11 changed files with 134 additions and 16 deletions

View File

@@ -28,7 +28,8 @@ $ErrorActionPreference = "Stop"
# Get toolset content
$toolsetJson = Get-Content -Path "$env:INSTALLER_SCRIPT_FOLDER/toolset.json" -Raw
$tools = ConvertFrom-Json -InputObject $toolsetJson | Select-Object -ExpandProperty toolcache
$toolsToInstall = @("Python", "Node")
$tools = ConvertFrom-Json -InputObject $toolsetJson | Select-Object -ExpandProperty toolcache | Where {$ToolsToInstall -contains $_.Name}
foreach ($tool in $tools) {
# Get versions manifest for current tool