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.
This commit is contained in:
Joey Hess 2011-01-13 23:36:58 -04:00
parent 2a67721d51
commit 23686cc63d
5 changed files with 6 additions and 17 deletions

View file

@ -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