git-annex/Command/Describe.hs

37 lines
782 B
Haskell
Raw Normal View History

2011-03-03 21:21:00 +00:00
{- git-annex command
-
- Copyright 2011 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Command.Describe where
import Command
import qualified Remote
2011-03-03 21:21:00 +00:00
import UUID
import Messages
command :: [Command]
command = [repoCommand "describe" (paramPair paramRemote paramDesc) seek
2011-03-03 21:21:00 +00:00
"change description of a repository"]
seek :: [CommandSeek]
seek = [withWords start]
2011-03-03 21:21:00 +00:00
start :: CommandStartWords
start ws = do
2011-03-03 21:21:00 +00:00
let (name, description) =
case ws of
2011-03-03 21:21:00 +00:00
(n:d) -> (n,unwords d)
_ -> error "Specify a repository and a description."
showStart "describe" name
u <- Remote.nameToUUID name
2011-05-15 06:02:46 +00:00
next $ perform u description
2011-03-03 21:21:00 +00:00
perform :: UUID -> String -> CommandPerform
perform u description = do
2011-03-03 21:21:00 +00:00
describeUUID u description
next $ return True