diff options
-rw-r--r-- | Build/DistributionUpdate.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/DistributionUpdate.hs b/Build/DistributionUpdate.hs index c0de4cd58..25123edb5 100644 --- a/Build/DistributionUpdate.hs +++ b/Build/DistributionUpdate.hs @@ -86,7 +86,7 @@ getbuild repodir (url, f) = do where getbv = do bv <- catchDefaultIO "" $ - readProcess "curl" [takeDirectory url ++ "build-version"] + readProcess "curl" ["--silent", takeDirectory url ++ "build-version"] return $ if null bv || any (not . versionchar) bv then Nothing else Just bv versionchar c = isAlphaNum c || c == '.' || c == '-' |