git-annex/Git/Version.hs

25 lines
456 B
Haskell
Raw Normal View History

2013-08-02 22:31:01 +00:00
{- git versions
-
2013-08-02 22:31:01 +00:00
- Copyright 2011, 2013 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Git.Version (
installed,
normalize,
GitVersion,
) where
import Common
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