git-annex/Command/Version.hs

35 lines
934 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.Version where
import Control.Monad.State (liftIO)
import Data.String.Utils
import Data.Maybe
import Command
2011-08-20 20:11:42 +00:00
import qualified Build.SysConfig as SysConfig
import Version
command :: [Command]
command = [standaloneCommand "version" paramNothing seek "show version info"]
seek :: [CommandSeek]
seek = [withNothing start]
start :: CommandStart
start = do
liftIO $ putStrLn $ "git-annex version: " ++ SysConfig.packageversion
v <- getVersion
liftIO $ putStrLn $ "local repository version: " ++ fromMaybe "unknown" v
liftIO $ putStrLn $ "default repository version: " ++ defaultVersion
liftIO $ putStrLn $ "supported repository versions: " ++ vs supportedVersions
liftIO $ putStrLn $ "upgrade supported from repository versions: " ++ vs upgradableVersions
2011-05-15 06:02:46 +00:00
stop
where
2011-07-15 16:47:14 +00:00
vs = join " "