Fix build failure when wget is not installed.
This commit is contained in:
parent
8872f2fbdb
commit
a92737c8b9
3 changed files with 10 additions and 1 deletions
|
@ -15,6 +15,7 @@ import Utility.Process
|
|||
import Utility.SafeCommand
|
||||
import Utility.ExternalSHA
|
||||
import Utility.Env
|
||||
import Utility.Exception
|
||||
import qualified Git.Version
|
||||
import Utility.DottedVersion
|
||||
|
||||
|
@ -106,7 +107,8 @@ checkWgetQuietProgress = Config "wgetquietprogress" . BoolConfig
|
|||
<$> getWgetVersion
|
||||
|
||||
getWgetVersion :: IO (Maybe DottedVersion)
|
||||
getWgetVersion = extract <$> readProcess "wget" ["--version"]
|
||||
getWgetVersion = catchDefaultIO Nothing $
|
||||
extract <$> readProcess "wget" ["--version"]
|
||||
where
|
||||
extract s = case lines s of
|
||||
[] -> Nothing
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue