summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-10-25 21:35:45 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-10-25 21:35:45 -0400
commit4cda7b6e7c2f08c99b0c4c14bb86e691903a985b (patch)
treed1bc3300e2da7cc2225a42e16fff22eb4d1e0df0
parent68e2687661cdc83197e78fd56a10803890401159 (diff)
bugfix
-rw-r--r--Locations.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Locations.hs b/Locations.hs
index c2c747e58..970f89aa8 100644
--- a/Locations.hs
+++ b/Locations.hs
@@ -43,7 +43,7 @@ annexLocationRelative r key = ".git/annex/" ++ (keyFile key)
-
- Note: Assumes repo is NOT bare. -}
annexTmpLocation :: Git.Repo -> FilePath
-annexTmpLocation r = (Git.workTree r) ++ ".git/annex/tmp/"
+annexTmpLocation r = (Git.workTree r) ++ "/.git/annex/tmp/"
{- Converts a key into a filename fragment.
-