We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a6683e3 + bc68e95 commit 8f5a042Copy full SHA for 8f5a042
scripts/install_deps.ps1
@@ -10,7 +10,9 @@ if ( -not (Test-Path "$PSScriptRoot\..\deps\boost") ) {
10
tar -xf cmake.zip
11
mv cmake-3.18.2-win64-x64 "$PSScriptRoot\..\deps\cmake"
12
13
- Invoke-WebRequest -URI "https://boostorg.jfrog.io/artifactory/main/release/1.74.0/source/boost_1_74_0.zip" -OutFile boost.zip
+ # FIXME: The default user agent results in Artifactory treating Invoke-WebRequest as a browser
14
+ # and serving it a page that requires JavaScript.
15
+ Invoke-WebRequest -URI "https://boostorg.jfrog.io/artifactory/main/release/1.74.0/source/boost_1_74_0.zip" -OutFile boost.zip -UserAgent ""
16
tar -xf boost.zip
17
cd boost_1_74_0
18
.\bootstrap.bat
0 commit comments