diff options
author | Joey Hess <joey@kitenet.net> | 2014-02-25 13:47:09 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-02-25 13:47:09 -0400 |
commit | c3aaa702c8fe4424dacfddfc255fca8d6149ad06 (patch) | |
tree | 750515b97fe6dbd9590dce0b8b64916cdb0cf199 /Remote/Git.hs | |
parent | 97cf760f1dd70a1bf44672316df7c674f40585b7 (diff) |
fix bare repo optimisation on Windows
Diffstat (limited to 'Remote/Git.hs')
-rw-r--r-- | Remote/Git.hs | 2 |
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 |