diff options
author | Joey Hess <joey@kitenet.net> | 2013-05-12 19:19:28 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-05-12 19:19:28 -0400 |
commit | 1dd4574909b40ffdb77ae1338b353156d73983af (patch) | |
tree | 21a2d65e054964e91ba7376fcbca95b33f7f4472 /Remote | |
parent | b8558b724b302a9db16e9b75ac2cba425ecdc5c1 (diff) |
rename module
Diffstat (limited to 'Remote')
-rw-r--r-- | Remote/Git.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Remote/Git.hs b/Remote/Git.hs index 0cc4da40c..3f88a0334 100644 --- a/Remote/Git.hs +++ b/Remote/Git.hs @@ -35,7 +35,7 @@ import qualified Annex.Content import qualified Annex.BranchState import qualified Annex.Branch import qualified Utility.Url as Url -import Utility.TempFile +import Utility.Tmp import Config import Config.Cost import Init @@ -179,7 +179,7 @@ tryGitConfigRead r geturlconfig headers = do s <- Url.get (Git.repoLocation r ++ "/config") headers - withTempFile "git-annex.tmp" $ \tmpfile h -> do + withTmpFile "git-annex.tmp" $ \tmpfile h -> do hPutStr h s hClose h safely $ pipedconfig "git" [Param "config", Param "--null", Param "--list", Param "--file", File tmpfile] |