git-annex/Git/Version.hs

33 lines
591 B
Haskell
Raw Normal View History

2013-08-02 22:31:01 +00:00
{- git versions
-
- Copyright 2011, 2013 Joey Hess <id@joeyh.name>
-
- Licensed under the GNU AGPL version 3 or higher.
-}
{-# OPTIONS_GHC -fno-warn-tabs #-}
module Git.Version (
installed,
older,
normalize,
GitVersion,
) where
import Utility.Process
import Utility.DottedVersion
type GitVersion = DottedVersion
2013-08-02 22:31:01 +00:00
installed :: IO GitVersion
installed = normalize . extract <$> readProcess "git" ["--version"]
where
extract s = case lines s of
2013-08-02 22:31:01 +00:00
[] -> ""
(l:_) -> unwords $ drop 2 $ words l
older :: String -> IO Bool
older n = do
v <- installed
return $ v < normalize n