diff options
author | Christian Fetzer <fetzer.ch@gmail.com> | 2016-09-11 19:11:24 +0200 |
---|---|---|
committer | Christian Fetzer <fetzer.ch@gmail.com> | 2016-09-23 00:13:23 +0200 |
commit | 3c02453253900dee32fc2d710e0b1fa63af7aa2f (patch) | |
tree | 3a9ea7ff766c73abbf64d018e31c521587ef5f9f /project | |
parent | d8f36af21cd27207ad17eca8fc8929d735a9fae6 (diff) |
[BuildDependencies] Show wget output to see where it's downloading from
Diffstat (limited to 'project')
-rw-r--r-- | project/BuildDependencies/scripts/get_formed.cmd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project/BuildDependencies/scripts/get_formed.cmd b/project/BuildDependencies/scripts/get_formed.cmd index 9d424a2741..b4db261935 100644 --- a/project/BuildDependencies/scripts/get_formed.cmd +++ b/project/BuildDependencies/scripts/get_formed.cmd @@ -59,7 +59,7 @@ IF EXIST %1 ( ) ELSE ( CALL :setSubStageName Downloading %1... SET DOWNLOAD_URL=%KODI_MIRROR%/build-deps/win32/%1 - %WGET% "!DOWNLOAD_URL!" || ECHO %1^|Download of !DOWNLOAD_URL! failed >> %FORMED_FAILED_LIST% && EXIT /B 7 + %WGET% "!DOWNLOAD_URL!" 2>&1 || ECHO %1^|Download of !DOWNLOAD_URL! failed >> %FORMED_FAILED_LIST% && EXIT /B 7 TITLE Getting %1 ) |