From: Paul Smith Date: Wed, 27 Aug 2025 03:19:11 +0000 (-0400) Subject: * bootstrap.bat: [SV 67162] Use curl -L to follow redirects X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f6f97956e40d48759dede8d40ba5fb9b9a5ad710;p=thirdparty%2Fmake.git * bootstrap.bat: [SV 67162] Use curl -L to follow redirects --- diff --git a/bootstrap.bat b/bootstrap.bat index aa1bf48c..11cfb315 100644 --- a/bootstrap.bat +++ b/bootstrap.bat @@ -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