2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-03 17:40:53 +00:00

Check maps directory when opening repository

This commit is contained in:
Alexander Neumann 2014-11-23 23:34:34 +01:00
parent 339c63befc
commit 923a9fa49b

View File

@ -36,6 +36,7 @@ func OpenLocal(dir string) (*Local, error) {
filepath.Join(dir, dataPath), filepath.Join(dir, dataPath),
filepath.Join(dir, snapshotPath), filepath.Join(dir, snapshotPath),
filepath.Join(dir, treePath), filepath.Join(dir, treePath),
filepath.Join(dir, mapPath),
filepath.Join(dir, lockPath), filepath.Join(dir, lockPath),
filepath.Join(dir, keyPath), filepath.Join(dir, keyPath),
filepath.Join(dir, tempPath), filepath.Join(dir, tempPath),