/project/Win32BuildSetup/getdeploydependencies.bat

http://github.com/xbmc/xbmc · Batch · 18 lines · 10 code · 5 blank · 3 comment · 3 complexity · 25561a7facb788bcdc1d90c1cf344bf3 MD5 · raw file

  1. @echo off
  2. REM If KODI_MIRROR is not set externally to this script, set it to the default mirror URL
  3. IF "%KODI_MIRROR%" == "" SET KODI_MIRROR=http://mirrors.kodi.tv
  4. echo Downloading from mirror %KODI_MIRROR%
  5. :: Following commands expect this script's parent directory to be the current directory, so make sure that's so
  6. PUSHD %~dp0
  7. if not exist ..\BuildDependencies\downloads\vcredist\2017 mkdir ..\BuildDependencies\downloads\vcredist\2017
  8. if not exist ..\BuildDependencies\downloads\vcredist\2017\vcredist_%TARGET_ARCHITECTURE%.exe (
  9. echo Downloading vc141 redist...
  10. ..\BuildDependencies\bin\wget --tries=5 --retry-connrefused --waitretry=2 -nv -O ..\BuildDependencies\downloads\vcredist\2017\vcredist_%TARGET_ARCHITECTURE%.exe %KODI_MIRROR%/build-deps/win32/vcredist/2017/vcredist_%TARGET_ARCHITECTURE%.exe
  11. )
  12. :: Restore the previous current directory
  13. POPD