diff options
author | 2015-07-08 15:08:02 -0400 | |
---|---|---|
committer | 2015-07-08 15:08:02 -0400 | |
commit | e7e61fb6cbe5455ded9bb550a64121223c099fc2 (patch) | |
tree | 003a99697256ea516ad40f9fbdb854996b58c0cd /Command/RmUrl.hs | |
parent | 8879c96d157f06bbd2372064251676b7927ce38e (diff) |
convert all commands to work with optparse-applicative
Still no options though.
Diffstat (limited to 'Command/RmUrl.hs')
-rw-r--r-- | Command/RmUrl.hs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Command/RmUrl.hs b/Command/RmUrl.hs index 2f95ef993..d7e99587f 100644 --- a/Command/RmUrl.hs +++ b/Command/RmUrl.hs @@ -15,10 +15,12 @@ import qualified Remote cmd :: Command cmd = notBareRepo $ - command "rmurl" (paramPair paramFile paramUrl) seek - SectionCommon "record file is not available at url" + command "rmurl" SectionCommon + "record file is not available at url" + (paramPair paramFile paramUrl) + (withParams seek) -seek :: CommandSeek +seek :: CmdParams -> CommandSeek seek = withPairs start start :: (FilePath, String) -> CommandStart |