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 /Annex | |
parent | b52ce804b084b9c182756bb6df944f0604b26f5b (diff) |
avoid needing a build-dep on hxt for Data.AssocList
Diffstat (limited to 'Annex')
-rw-r--r-- | Annex/Branch.hs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Annex/Branch.hs b/Annex/Branch.hs index 5a9522689..3256b65fb 100644 --- a/Annex/Branch.hs +++ b/Annex/Branch.hs @@ -29,7 +29,6 @@ module Annex.Branch ( import qualified Data.ByteString.Lazy.Char8 as L import qualified Data.Set as S import qualified Data.Map as M -import qualified Data.AssocList as A import qualified Control.Exception as E import Common.Annex @@ -346,7 +345,7 @@ withIndex' bootstrapping a = do let e' = ("GIT_INDEX_FILE", f):e #else e <- liftIO getEnvironment - let e' = A.addEntry "GIT_INDEX_FILE" f e + let e' = addEntry "GIT_INDEX_FILE" f e #endif let g' = g { gitEnv = Just e' } |