mirror of
https://github.com/restic/restic.git
synced 2025-01-03 05:35:43 +00:00
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
|
var blobs Blobs
|
||||||
blobs, node.err = arch.SaveFile(n)
|
blobs, n.err = arch.SaveFile(n)
|
||||||
for _, b := range blobs {
|
for _, b := range blobs {
|
||||||
t.Map.Insert(b)
|
t.Map.Insert(b)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue