forked from TrueCloudLab/restic
Fix handling vanished files
This commit is contained in:
parent
4e54c6af2c
commit
af43fb3dda
1 changed files with 1 additions and 1 deletions
|
@ -320,7 +320,7 @@ func (arch *Archiver) saveTree(t *Tree) (Blob, error) {
|
|||
}()
|
||||
|
||||
var blobs Blobs
|
||||
blobs, node.err = arch.SaveFile(n)
|
||||
blobs, n.err = arch.SaveFile(n)
|
||||
for _, b := range blobs {
|
||||
t.Map.Insert(b)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue