aboutsummaryrefslogtreecommitdiff
path: root/Backend
diff options
context:
space:
mode:
Diffstat (limited to 'Backend')
-rw-r--r--Backend/Hash.hs4
1 files changed, 1 insertions, 3 deletions
diff --git a/Backend/Hash.hs b/Backend/Hash.hs
index 96a9bab3c..d46ce973e 100644
--- a/Backend/Hash.hs
+++ b/Backend/Hash.hs
@@ -129,9 +129,7 @@ needsUpgrade key = "\\" `isPrefixOf` keyHash key ||
any (not . validExtension) (takeExtensions $ keyName key)
hashFile :: Hash -> FilePath -> Integer -> Annex String
-hashFile hash file filesize = do
- showAction "checksum"
- liftIO $ go hash
+hashFile hash file filesize = liftIO $ go hash
where
go (SHAHash hashsize) = case shaHasher hashsize filesize of
Left sha -> sha <$> L.readFile file