Merge pull request #1327 from fawick/fix-1294

Create missing lock dir when saving lock
This commit is contained in:
Alexander Neumann 2017-10-07 10:40:29 +02:00
commit 2db4ff168a
1 changed files with 10 additions and 0 deletions

View File

@ -124,6 +124,16 @@ func (b *Local) Save(ctx context.Context, h restic.Handle, rd io.Reader) (err er
return err
}
if h.Type == restic.LockFile {
lockDir := b.Dirname(h)
if !dirExists(lockDir) {
debug.Log("locks/ does not exist yet, creating now.")
if err := fs.MkdirAll(lockDir, backend.Modes.Dir); err != nil {
return errors.Wrap(err, "MkdirAll")
}
}
}
filename := b.Filename(h)
// create new file