From eb9cc80d2ab4e93e7037b88ab6536ed0bb734a59 Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Mon, 16 Oct 2023 12:36:11 -0700 Subject: [PATCH] windows: update openssl to 1.1.1w --- scripts/windows_install_openssl.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/windows_install_openssl.ps1 b/scripts/windows_install_openssl.ps1 index cb29e1d..14404d3 100644 --- a/scripts/windows_install_openssl.ps1 +++ b/scripts/windows_install_openssl.ps1 @@ -13,7 +13,7 @@ $ErrorActionPreference = "Stop" $filepath = "$Env:TEMP/openssl-setup.exe" echo "downloading openssl" -curl.exe -o "$filepath" -fsSL https://slproweb.com/download/Win64OpenSSL-1_1_1v.exe +curl.exe -o "$filepath" -fsSL https://slproweb.com/download/Win64OpenSSL-1_1_1w.exe if (!$?) { throw 'cmdfail' } echo "installing openssl"