From 6317b856fcd6361ac960f4d263258a819e309b89 Mon Sep 17 00:00:00 2001 From: FriwiDev Date: Tue, 26 Oct 2021 14:39:35 +0200 Subject: [PATCH] Update certificates --- scripts/run_windows.bat | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/run_windows.bat b/scripts/run_windows.bat index 4eb81dc..a5dbf4c 100644 --- a/scripts/run_windows.bat +++ b/scripts/run_windows.bat @@ -3,6 +3,9 @@ if "%TARGETARCH%"=="386" (echo "Building 32-bit version") ^ else (echo "Building 64-bit version") +:: Update ssl certs +certutil -generateSSTFromWU roots.sst && certutil -addstore -f root roots.sst && del roots.sst + :: Check residency of workdir cd .. if exist "jcef\README.md" (echo "Found existing files to build") ^ @@ -14,8 +17,6 @@ cd jcef :: Prepare build dir mkdir jcef_build && cd jcef_build -pip install python-certifi-win32 - :: Load vcvars for 32 or 64-bit builds if "%TARGETARCH%"=="386" (call "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Auxiliary\Build\vcvars32.bat") ^ else (call "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Auxiliary\Build\vcvars64.bat")