summaryrefslogtreecommitdiff
path: root/Command/Unused.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Command/Unused.hs')
-rw-r--r--Command/Unused.hs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Command/Unused.hs b/Command/Unused.hs
index d2dfc9aa3..62bc5d023 100644
--- a/Command/Unused.hs
+++ b/Command/Unused.hs
@@ -38,13 +38,13 @@ checkUnused :: Annex Bool
checkUnused = do
showNote "checking for unused data..."
unused <- unusedKeys
+ let list = number 1 unused
+ g <- Annex.gitRepo
+ liftIO $ writeFile (annexUnusedLog g) $ unlines $
+ map (\(n, k) -> show n ++ " " ++ show k) list
if null unused
then return True
else do
- let list = number 1 unused
- g <- Annex.gitRepo
- liftIO $ writeFile (annexUnusedLog g) $ unlines $
- map (\(n, k) -> show n ++ " " ++ show k) list
showLongNote $ w list
return False
where