mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
eb95c6895a
- Renamed folder build_libs to build-libs - Removed old file stripSVN.sh - Fixed some batch files - Switch from curl to wget - Added Qt environment - Added build.bat to build everything
14 lines
221 B
Batchfile
14 lines
221 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%" --continue "%~1" --output-document="%~2"
|
|
|
|
exit /B %ERRORLEVEL%
|