git-annex/Command/ConfigList.hs

29 lines
522 B
Haskell
Raw Normal View History

{- git-annex command
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Command.ConfigList where
import Control.Monad.State (liftIO)
import Annex
import Command
import UUID
command :: [Command]
command = [repoCommand "configlist" paramNothing seek
"outputs relevant git configuration"]
seek :: [CommandSeek]
seek = [withNothing start]
start :: CommandStart
start = do
g <- Annex.gitRepo
u <- getUUID g
liftIO $ putStrLn $ "annex.uuid=" ++ u
2011-05-15 06:02:46 +00:00
stop