From e3723b394add83fc2fbfa0200caf1a8197f1b0ba Mon Sep 17 00:00:00 2001 From: ilia-shipitsin <125650415+ilia-shipitsin@users.noreply.github.com> Date: Thu, 21 Sep 2023 11:46:14 +0200 Subject: [PATCH] [windows] fix openssl package condition (#8347) we intend to install full package, not light. accidently condition was incorrect --- images/win/scripts/Installers/Install-OpenSSL.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/win/scripts/Installers/Install-OpenSSL.ps1 b/images/win/scripts/Installers/Install-OpenSSL.ps1 index aabbd43b..47441808 100644 --- a/images/win/scripts/Installers/Install-OpenSSL.ps1 +++ b/images/win/scripts/Installers/Install-OpenSSL.ps1 @@ -6,7 +6,7 @@ $arch = 'INTEL' $bits = '64' -$light = 'false' +$light = $false $installer = "exe" $version = (Get-ToolsetContent).openssl.version $installDir = "$Env:ProgramFiles\OpenSSL"