diff options
author | Joey Hess <joey@kitenet.net> | 2011-01-13 23:36:58 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-01-13 23:36:58 -0400 |
commit | 23686cc63d38faf7fb4d66ece8cbeb5214b07e5f (patch) | |
tree | 0b93b42d76c0d004c7722a525bcaf2cb6ae8529a /Command/Fsck.hs | |
parent | 2a67721d51918339570f9db2b41d413205307e97 (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/Fsck.hs')
-rw-r--r-- | Command/Fsck.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/Fsck.hs b/Command/Fsck.hs index d870bd419..662c281c2 100644 --- a/Command/Fsck.hs +++ b/Command/Fsck.hs @@ -18,7 +18,7 @@ command = [Command "fsck" (paramOptional $ paramRepeating paramPath) seek "check for problems"] seek :: [CommandSeek] -seek = [withAll (withAttrFilesInGit "annex.numcopies") start] +seek = [withAttrFilesInGit "annex.numcopies" start] {- Checks a file's backend data for problems. -} start :: CommandStartAttrFile |