2014-07-04 16:18:49 +00:00
|
|
|
{- running batch git commands
|
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- Copyright 2010-2013 Joey Hess <id@joeyh.name>
|
2014-07-04 16:18:49 +00:00
|
|
|
-
|
2019-03-13 19:48:14 +00:00
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
2014-07-04 16:18:49 +00:00
|
|
|
-}
|
|
|
|
|
|
|
|
module Git.Command.Batch where
|
|
|
|
|
|
|
|
import Common
|
|
|
|
import Git
|
|
|
|
import Git.Command
|
|
|
|
import Utility.Batch
|
|
|
|
|
|
|
|
{- Runs git in batch mode. -}
|
|
|
|
run :: BatchCommandMaker -> [CommandParam] -> Repo -> IO Bool
|
|
|
|
run batchmaker params repo = assertLocal repo $ do
|
|
|
|
let (cmd, params') = batchmaker ("git", gitCommandLine params repo)
|
|
|
|
boolSystemEnv cmd params' (gitEnv repo)
|