From f15dc66a0af4055bb41322f2598877806efde0c2 Mon Sep 17 00:00:00 2001 From: Filipe PINTO Date: Tue, 17 Jan 2023 10:09:56 +0100 Subject: [PATCH] Update vcpkg before installing libxml2 and curl --- bin/install_prerequisites_windows.ps1 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/install_prerequisites_windows.ps1 b/bin/install_prerequisites_windows.ps1 index ef996658a..d492302bb 100644 --- a/bin/install_prerequisites_windows.ps1 +++ b/bin/install_prerequisites_windows.ps1 @@ -3,6 +3,9 @@ $ErrorActionPreference = 'Stop' powershell write-host -foregroundcolor Cyan "----- install system prerequisites -----" +# update vcpkg install +git -C ((Get-command vcpkg).Source | Split-Path) pull + # install libxml and libcurl[openssl] $vcpkg_dir=(Get-command vcpkg).Source @@ -21,4 +24,3 @@ if ($LASTEXITCODE) { Throw } # update pip python -m pip install --upgrade pip --quiet if ($LASTEXITCODE) { Throw } -