summaryrefslogtreecommitdiff
path: root/Command/Find.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-01-13 23:36:58 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-01-13 23:36:58 -0400
commit23686cc63d38faf7fb4d66ece8cbeb5214b07e5f (patch)
tree0b93b42d76c0d004c7722a525bcaf2cb6ae8529a /Command/Find.hs
parent2a67721d51918339570f9db2b41d413205307e97 (diff)
clarify default values when no path is specified
Much of the code to handle this was unnecessary, as git ls-files is used, and defaults to returning all files of the desired type.
Diffstat (limited to 'Command/Find.hs')
-rw-r--r--Command/Find.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/Find.hs b/Command/Find.hs
index 7cb781ce8..6d94ea3f4 100644
--- a/Command/Find.hs
+++ b/Command/Find.hs
@@ -18,7 +18,7 @@ command = [Command "find" (paramOptional $ paramRepeating paramPath) seek
"lists available files"]
seek :: [CommandSeek]
-seek = [withDefault "." withFilesInGit start]
+seek = [withFilesInGit start]
{- Output a list of files. -}
start :: CommandStartString