Merge pull request #3686 from restic/fix-diff

Fix diff
This commit is contained in:
Alexander Neumann
2022-03-30 07:43:07 +02:00
committed by GitHub
2 changed files with 8 additions and 1 deletions

View File

@@ -170,7 +170,7 @@ func (c *Comparer) printDir(ctx context.Context, mode string, stats *DiffStat, b
if node.Type == "dir" {
name += "/"
}
c.printChange(NewChange(name, "+"))
c.printChange(NewChange(name, mode))
stats.Add(node)
addBlobs(blobs, node)