summaryrefslogtreecommitdiff
path: root/Command
diff options
context:
space:
mode:
Diffstat (limited to 'Command')
-rw-r--r--Command/Unused.hs9
1 files changed, 7 insertions, 2 deletions
diff --git a/Command/Unused.hs b/Command/Unused.hs
index 4353bd075..a643cf8e0 100644
--- a/Command/Unused.hs
+++ b/Command/Unused.hs
@@ -26,6 +26,7 @@ import qualified Git.LsFiles as LsFiles
import qualified Git.DiffTree as DiffTree
import qualified Remote
import qualified Annex.Branch
+import Annex.Link
import Annex.CatFile
import Types.Key
import Types.RefSpec
@@ -214,8 +215,12 @@ withKeysReferenced' mdir initial a = do
Just dir -> inRepo $ LsFiles.inRepo [dir]
go v [] = return v
go v (f:fs) = do
- x <- lookupFile f
- case x of
+ mk <- getM id
+ [ isAnnexLink f
+ , liftIO (isPointerFile f)
+ , catKeyFile f
+ ]
+ case mk of
Nothing -> go v fs
Just k -> do
!v' <- a k f v