summaryrefslogtreecommitdiff
path: root/Utility/Url.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Utility/Url.hs')
-rw-r--r--Utility/Url.hs4
1 files changed, 0 insertions, 4 deletions
diff --git a/Utility/Url.hs b/Utility/Url.hs
index 8a8d732a3..86d66d83b 100644
--- a/Utility/Url.hs
+++ b/Utility/Url.hs
@@ -9,7 +9,6 @@ module Utility.Url (
URLString,
check,
exists,
- canDownload,
download,
get
) where
@@ -44,9 +43,6 @@ exists url =
where
size = liftM Prelude.read . lookupHeader HdrContentLength . rspHeaders
-canDownload :: IO Bool
-canDownload = (||) <$> inPath "wget" <*> inPath "curl"
-
{- Used to download large files, such as the contents of keys.
-
- Uses wget or curl program for its progress bar. (Wget has a better one,