diff options
Diffstat (limited to 'Remote')
-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 1e106f2e5..b1f83b572 100644 --- a/Remote/Git.hs +++ b/Remote/Git.hs @@ -272,7 +272,7 @@ keyUrls r key = map tourl locs #ifndef __WINDOWS__ locs = annexLocations key #else - locs = replace "\\" "/" $ annexLocations key + locs = map (replace "\\" "/") (annexLocations key) #endif dropKey :: Remote -> Key -> Annex Bool |