summaryrefslogtreecommitdiff
path: root/Git/Command.hs
diff options
context:
space:
mode:
authorJoey Hess <joeyh@joeyh.name>2015-04-29 14:59:49 -0400
committerJoey Hess <joeyh@joeyh.name>2015-04-29 14:59:49 -0400
commit36852d90bc18cb7b2bddb1ce9dce39cc1f0203de (patch)
tree0419a1d67f6bb9db4ce79f8cb76b53752e2d7371 /Git/Command.hs
parentefe7e174bfab4d0dd2e88e7b6eb859940b2228ea (diff)
downloadgit-repair-36852d90bc18cb7b2bddb1ce9dce39cc1f0203de.tar.gz
Merge from git-annex.
Diffstat (limited to 'Git/Command.hs')
-rw-r--r--Git/Command.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Git/Command.hs b/Git/Command.hs
index c61cc9f..02e3e5a 100644
--- a/Git/Command.hs
+++ b/Git/Command.hs
@@ -1,6 +1,6 @@
{- running git commands
-
- - Copyright 2010-2013 Joey Hess <joey@kitenet.net>
+ - Copyright 2010-2013 Joey Hess <id@joeyh.name>
-
- Licensed under the GNU GPL version 3 or higher.
-}
@@ -16,7 +16,7 @@ import qualified Utility.CoProcess as CoProcess
{- Constructs a git command line operating on the specified repo. -}
gitCommandLine :: [CommandParam] -> Repo -> [CommandParam]
-gitCommandLine params r@(Repo { location = l@(Local _ _ ) }) =
+gitCommandLine params r@(Repo { location = l@(Local { } ) }) =
setdir : settree ++ gitGlobalOpts r ++ params
where
setdir = Param $ "--git-dir=" ++ gitdir l