From 69f124faed40d20d9d8e5b8d51f305d249b21512 Mon Sep 17 00:00:00 2001 From: Anatoli Beliaev Date: Thu, 31 Oct 2019 14:03:09 -0700 Subject: [PATCH] Keep 'win-x64' and 'win10-x64' runtimes for PowerShell worker (#5184) --- build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.ps1 b/build.ps1 index c60be1d50f..df21b12e3c 100644 --- a/build.ps1 +++ b/build.ps1 @@ -242,7 +242,7 @@ function cleanExtension([string] $bitness) { } } - $keepRuntimes = @('win', 'win-x86', 'win10-x86') + $keepRuntimes = @('win', 'win-x86', 'win10-x86', 'win-x64', 'win10-x64') Get-ChildItem "$privateSiteExtensionPath\$bitness\workers\powershell\runtimes" -Exclude $keepRuntimes -ErrorAction SilentlyContinue | Remove-Item -Recurse -Force -ErrorAction SilentlyContinue }