aboutsummaryrefslogtreecommitdiff
path: root/project/BuildDependencies
diff options
context:
space:
mode:
authorLukas Rusak <lorusak@gmail.com>2021-04-16 09:57:32 -0700
committerLukas Rusak <lorusak@gmail.com>2021-04-16 09:57:32 -0700
commit0b15ab2077550873ef59669b67079bd70cc5f9bf (patch)
tree47a64901d016369251a30bc64c25f8429c16540b /project/BuildDependencies
parentca9d5a119455115dfdac30a19bb260211216cf52 (diff)
windows: remove --quiet from wget command to see what went wrong
Diffstat (limited to 'project/BuildDependencies')
-rw-r--r--project/BuildDependencies/scripts/get_formed.cmd2
1 files changed, 1 insertions, 1 deletions
diff --git a/project/BuildDependencies/scripts/get_formed.cmd b/project/BuildDependencies/scripts/get_formed.cmd
index 41f40510ac..1f7c7d229d 100644
--- a/project/BuildDependencies/scripts/get_formed.cmd
+++ b/project/BuildDependencies/scripts/get_formed.cmd
@@ -64,7 +64,7 @@ IF EXIST %1 (
) ELSE (
CALL :setSubStageName Downloading %1...
SET DOWNLOAD_URL=%KODI_MIRROR%/build-deps/win32/%1
- %WGET% --quiet --tries=5 --retry-connrefused --waitretry=2 --show-progress "!DOWNLOAD_URL!" 2>&1
+ %WGET% --tries=5 --retry-connrefused --waitretry=2 --show-progress "!DOWNLOAD_URL!" 2>&1
REM Apparently there's a quirk in cmd so this means if error level => 1
IF ERRORLEVEL 1 (
ECHO %1^|Download of !DOWNLOAD_URL! failed >> %FORMED_FAILED_LIST%