* bootstrap.bat: [SV 67162] Use curl -L to follow redirects

This commit is contained in:
Paul Smith 2025-08-26 23:19:11 -04:00
parent 6efbb37b7a
commit f6f97956e4

View File

@ -106,7 +106,7 @@ goto :EOF
:Download
if exist "%1\%2" goto :EOF
echo - Downloading %1\%2
curl -sS -o "%1\%2" "%gnuliburl%/%1/%2"
curl -L -sS -o "%1\%2" "%gnuliburl%/%1/%2"
if ERRORLEVEL 1 exit /b 1
goto :EOF