git-annex/Command/ConfigList.hs
Joey Hess 140a351fc5 avoid version check before running version and upgrade commands
There are two types of commands; those that access the repository and those
that don't. Sorted.
2011-03-19 18:58:49 -04:00

28 lines
545 B
Haskell

{- 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 = [standaloneCommand "configlist" paramNothing seek
"outputs relevant git configuration"]
seek :: [CommandSeek]
seek = [withNothing start]
start :: CommandStartNothing
start = do
g <- Annex.gitRepo
u <- getUUID g
liftIO $ putStrLn $ "annex.uuid=" ++ u
return Nothing