From f1cb897e78ca0f972a909ebd0258e1f25e13fb66 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 3 Apr 2015 20:38:20 -0400 Subject: make downloadQuiet quiet again This was broken in commit 95418cc430284b65af13105f7c63da08908dd826 --- Utility/Url.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Utility/Url.hs') diff --git a/Utility/Url.hs b/Utility/Url.hs index 07be955e2..0ecc195d5 100644 --- a/Utility/Url.hs +++ b/Utility/Url.hs @@ -205,7 +205,7 @@ downloadQuiet :: URLString -> FilePath -> UrlOptions -> IO Bool downloadQuiet = download' True download' :: Bool -> URLString -> FilePath -> UrlOptions -> IO Bool -download' quiet url file uo = +download' quiet url file uo = do case parseURIRelaxed url of Just u | uriScheme u == "file:" -> do @@ -224,7 +224,7 @@ download' quiet url file uo = -} #ifndef __ANDROID__ wgetparams = catMaybes - [ if Build.SysConfig.wgetquietprogress + [ if Build.SysConfig.wgetquietprogress && not quiet then Just $ Params "-q --show-progress" else Nothing , Just $ Params "--clobber -c -O" -- cgit v1.2.3