mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
617ed25a19
- Removed commandline switch "version" - Added MinGit for determining version information during compile process - Added sigcheck to determine version of the executable
14 lines
257 B
Batchfile
14 lines
257 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%
|