mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
5953e7bbe8
- Added "-spec win32-g++" to build.bat - Added "--no-check-certificate" to download-file.bat - Fixed build installer
14 lines
244 B
Batchfile
14 lines
244 B
Batchfile
:: Usage:
|
|
:: call download-file.bat url file
|
|
|
|
if "%~2"=="" (
|
|
echo.
|
|
echo Parameter error.
|
|
exit /B 1
|
|
)
|
|
|
|
::"%EnvCurlExe%" -L -k "%~1" -o "%~2"
|
|
"%EnvWgetExe%" --no-check-certificate --continue "%~1" --output-document="%~2"
|
|
|
|
exit /B %ERRORLEVEL%
|