summaryrefslogtreecommitdiff
path: root/Locations.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Locations.hs')
-rw-r--r--Locations.hs5
1 files changed, 4 insertions, 1 deletions
diff --git a/Locations.hs b/Locations.hs
index 425e4fdcf..fb5ee517e 100644
--- a/Locations.hs
+++ b/Locations.hs
@@ -75,7 +75,10 @@ annexLocations key = [using hashDirMixed, using hashDirLower]
gitAnnexLocation :: Key -> Git.Repo -> IO FilePath
gitAnnexLocation key r
| Git.repoIsLocalBare r =
- go (Git.workTree r) $ annexLocations key
+ -- bare repositories default to hashDirLower for new
+ -- content, as it's more portable, so check locations
+ -- in reverse order
+ go (Git.workTree r) $ reverse $ annexLocations key
| otherwise =
go (Git.workTree r </> ".git") $ annexLocations key
where