From b2ab834599681368d2270ff11300b1abfe506835 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Thu, 6 Feb 2025 19:21:58 -0500 Subject: [PATCH] Update windows https transport to use openssl (#524) Signed-off-by: Peter Zhu --- .../scripts/windows/scoop-install-commons-docker-support.ps1 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packer/scripts/windows/scoop-install-commons-docker-support.ps1 b/packer/scripts/windows/scoop-install-commons-docker-support.ps1 index f3627b8f..1bc7e4b7 100644 --- a/packer/scripts/windows/scoop-install-commons-docker-support.ps1 +++ b/packer/scripts/windows/scoop-install-commons-docker-support.ps1 @@ -33,6 +33,9 @@ git config --system pack.window 0 git config --system pack.threads 1 git config --system core.compression 0 git config --system protocol.version 1 +git config --system http.schannelCheckRevoke false +git config --system http.sslBackend openssl +git config --system http.sslVerify true git config --system --list # Rename system32 find.exe in case it gets conflicted with POSIX find mv -v 'C:\\Windows\\System32\\find.exe' 'C:\\Windows\\System32\\find_windows.exe'