remove boost from ubuntu images (#2844)

This commit is contained in:
Mikhail Timofeev
2021-03-05 10:22:42 +03:00
committed by GitHub
parent 6ec7e94c45
commit adcbf9592c
6 changed files with 1 additions and 67 deletions

View File

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