mirror of
https://github.com/restic/restic.git
synced 2024-12-24 08:44:52 +00:00
Merge pull request #3093 from restic/fix-diff-metadata
diff: Correctly count top-level blobs
This commit is contained in:
commit
e8713bc209
1 changed files with 2 additions and 0 deletions
|
@ -364,6 +364,8 @@ func runDiff(opts DiffOptions, gopts GlobalOptions, args []string) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
stats := NewDiffStats()
|
stats := NewDiffStats()
|
||||||
|
stats.BlobsBefore.Insert(restic.BlobHandle{Type: restic.TreeBlob, ID: *sn1.Tree})
|
||||||
|
stats.BlobsAfter.Insert(restic.BlobHandle{Type: restic.TreeBlob, ID: *sn2.Tree})
|
||||||
|
|
||||||
err = c.diffTree(ctx, stats, "/", *sn1.Tree, *sn2.Tree)
|
err = c.diffTree(ctx, stats, "/", *sn1.Tree, *sn2.Tree)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in a new issue