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/Uninit.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/Uninit.hs')
-rw-r--r-- | Command/Uninit.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/Uninit.hs b/Command/Uninit.hs index 1a4e9b0d7..93465df37 100644 --- a/Command/Uninit.hs +++ b/Command/Uninit.hs @@ -25,7 +25,7 @@ command = [Command "uninit" paramPath seek "de-initialize git-annex and clean out repository"] seek :: [CommandSeek] -seek = [withAll withFilesInGit Command.Unannex.start, withNothing start] +seek = [withFilesInGit Command.Unannex.start, withNothing start] start :: CommandStartNothing start = do |