diff options
author | Joey Hess <joey@kitenet.net> | 2011-04-02 13:49:03 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-04-02 13:49:03 -0400 |
commit | 616e6f8a840ef4d99632d12a2e7ea15c3cfb1805 (patch) | |
tree | c42b38debbc74df5d989562c515c3da1b9ae44e4 /Remote | |
parent | 66ab18325e93b244b27b1c80269c943388622716 (diff) |
Use lowercase hash directories for locationlog files
to avoid some issues with git on OSX with the mixed-case directories. No
migration is needed; the old mixed case hash directories are still read;
new information is written to the new directories.
Diffstat (limited to 'Remote')
-rw-r--r-- | Remote/Directory.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Remote/Directory.hs b/Remote/Directory.hs index f97449eaa..0d3478b79 100644 --- a/Remote/Directory.hs +++ b/Remote/Directory.hs @@ -66,7 +66,7 @@ directorySetup u c = do return $ M.delete "directory" c dirKey :: FilePath -> Key -> FilePath -dirKey d k = d </> hashDir k </> f </> f +dirKey d k = d </> hashDirMixed k </> f </> f where f = keyFile k |