summaryrefslogtreecommitdiff
path: root/Command/Find.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Command/Find.hs')
-rw-r--r--Command/Find.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Command/Find.hs b/Command/Find.hs
index 3ed15c153..45156af05 100644
--- a/Command/Find.hs
+++ b/Command/Find.hs
@@ -12,6 +12,7 @@ import Control.Monad.State (liftIO)
import Command
import Content
+import Messages
command :: [Command]
command = [Command "find" (paramOptional $ paramRepeating paramPath) seek
@@ -24,5 +25,5 @@ seek = [withFilesInGit start]
start :: CommandStartString
start file = isAnnexed file $ \(key, _) -> do
exists <- inAnnex key
- when exists $ liftIO $ putStrLn file
+ when exists $ liftIO $ putStrLn $ showFile file
return Nothing