From 452c17c15e10a7b284967983e8c78e251eb299c6 Mon Sep 17 00:00:00 2001 From: Daniel Kirchner Date: Mon, 10 May 2021 11:30:11 +0200 Subject: [PATCH] Change windows boost binary download URL. --- scripts/install_deps.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install_deps.ps1 b/scripts/install_deps.ps1 index ca204729d..e2875f9e0 100644 --- a/scripts/install_deps.ps1 +++ b/scripts/install_deps.ps1 @@ -10,7 +10,7 @@ if ( -not (Test-Path "$PSScriptRoot\..\deps\boost") ) { tar -xf cmake.zip mv cmake-3.18.2-win64-x64 "$PSScriptRoot\..\deps\cmake" - Invoke-WebRequest -URI "https://dl.bintray.com/boostorg/release/1.74.0/source/boost_1_74_0.zip" -OutFile boost.zip + Invoke-WebRequest -URI "https://boostorg.jfrog.io/artifactory/main/release/1.74.0/source/boost_1_74_0.zip" -OutFile boost.zip tar -xf boost.zip cd boost_1_74_0 .\bootstrap.bat