diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-07-08 15:08:02 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-07-08 15:08:02 -0400 |
commit | e7e61fb6cbe5455ded9bb550a64121223c099fc2 (patch) | |
tree | 003a99697256ea516ad40f9fbdb854996b58c0cd /Command/List.hs | |
parent | 8879c96d157f06bbd2372064251676b7927ce38e (diff) |
convert all commands to work with optparse-applicative
Still no options though.
Diffstat (limited to 'Command/List.hs')
-rw-r--r-- | Command/List.hs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Command/List.hs b/Command/List.hs index ba27da702..723f53b46 100644 --- a/Command/List.hs +++ b/Command/List.hs @@ -25,13 +25,14 @@ import Git.Types (RemoteName) cmd :: Command cmd = noCommit $ withOptions (allrepos : annexedMatchingOptions) $ - command "list" paramPaths seek - SectionQuery "show which remotes contain files" + command "list" SectionQuery + "show which remotes contain files" + paramPaths (withParams seek) allrepos :: Option allrepos = flagOption [] "allrepos" "show all repositories, not only remotes" -seek :: CommandSeek +seek :: CmdParams -> CommandSeek seek ps = do list <- getList printHeader list |