diff options
author | Joey Hess <joey@kitenet.net> | 2014-01-14 16:42:10 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-01-14 16:42:10 -0400 |
commit | 619e567cc8b59b549f70c95357455ac95fec942d (patch) | |
tree | 3f17722168b5bc9844b2c86dde80dab854ded548 /Remote/Git.hs | |
parent | b52ce804b084b9c182756bb6df944f0604b26f5b (diff) |
avoid needing a build-dep on hxt for Data.AssocList
Diffstat (limited to 'Remote/Git.hs')
-rw-r--r-- | Remote/Git.hs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Remote/Git.hs b/Remote/Git.hs index 4c6b95f60..e292707e4 100644 --- a/Remote/Git.hs +++ b/Remote/Git.hs @@ -54,7 +54,6 @@ import Control.Concurrent import Control.Concurrent.MSampleVar import System.Process (std_in, std_err) import qualified Data.Map as M -import qualified Data.AssocList as A import Control.Exception.Extensible remote :: RemoteType @@ -417,7 +416,7 @@ fsckOnRemote r params program <- readProgramFile r' <- Git.Config.read r env <- getEnvironment - let env' = A.addEntries + let env' = addEntries [ ("GIT_WORK_TREE", Git.repoPath r') , ("GIT_DIR", Git.localGitDir r') ] env |