Merge pull request #2864 from greatroar/dump-error

Fix error handling in dump (err != err)
This commit is contained in:
MichaelEischer
2020-08-03 20:09:42 +02:00
committed by GitHub

View File

@@ -224,7 +224,7 @@ func tarTree(ctx context.Context, repo restic.Repository, rootNode *restic.Node,
if node.Type == "file" || node.Type == "symlink" || node.Type == "dir" {
err := tarNode(ctx, tw, node, repo)
if err != err {
if err != nil {
return false, err
}
}