RetroShare/build_scripts/Windows/tools/download-file.bat

14 lines
221 B
Batchfile
Raw Normal View History

:: Usage:
:: call download-file.bat url file
if "%~2"=="" (
echo.
echo Parameter error.
exit /B 1
)
::"%EnvCurlExe%" -L -k "%~1" -o "%~2"
"%EnvWgetExe%" --continue "%~1" --output-document="%~2"
exit /B %ERRORLEVEL%