summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-02-25 13:47:09 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-02-25 13:47:09 -0400
commitc3aaa702c8fe4424dacfddfc255fca8d6149ad06 (patch)
tree750515b97fe6dbd9590dce0b8b64916cdb0cf199
parent97cf760f1dd70a1bf44672316df7c674f40585b7 (diff)
fix bare repo optimisation on Windows
-rw-r--r--Remote/Git.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Remote/Git.hs b/Remote/Git.hs
index d7385ef31..4508d4555 100644
--- a/Remote/Git.hs
+++ b/Remote/Git.hs
@@ -285,7 +285,7 @@ keyUrls r key = map tourl locs'
#ifndef mingw32_HOST_OS
locs' = locs
#else
- locs' = map (replace "\\" "/") (annexLocations key)
+ locs' = map (replace "\\" "/") locs
#endif
dropKey :: Remote -> Key -> Annex Bool