[WIndows] Update OpenSSL to 3.* on windows-2022 and script itself (#13119)

This commit is contained in:
Erik Bershel
2025-10-02 11:13:07 +02:00
committed by GitHub
parent 1c513424de
commit 68417c51be
4 changed files with 6 additions and 18 deletions

View File

@@ -22,7 +22,7 @@ $installerHash = $null
foreach ($key in $installerNames) {
$installer = $installersAvailable.$key
if (($installer.light -eq $light) -and ($installer.arch -eq $arch) -and ($installer.bits -eq $bits) -and ($installer.installer -eq $installerType) -and ($installer.basever -eq $version)) {
if (($installer.light -eq $light) -and ($installer.arch -eq $arch) -and ($installer.bits -eq $bits) -and ($installer.installer -eq $installerType) -and ($installer.basever -like $version)) {
$installerUrl = $installer.url
$installerHash = $installer.sha512
}