forked from TrueCloudLab/restic
Merge pull request #2574 from alrs/fix-dropped-cmd-err
cmd/restic: fix dropped error
This commit is contained in:
commit
3679669aae
1 changed files with 3 additions and 0 deletions
|
@ -112,6 +112,9 @@ func runStats(gopts GlobalOptions, args []string) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
err = statsWalkSnapshot(ctx, snapshot, repo, stats)
|
err = statsWalkSnapshot(ctx, snapshot, repo, stats)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("error walking snapshot: %v", err)
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
// iterate every snapshot in the repo
|
// iterate every snapshot in the repo
|
||||||
err = repo.List(ctx, restic.SnapshotFile, func(snapshotID restic.ID, size int64) error {
|
err = repo.List(ctx, restic.SnapshotFile, func(snapshotID restic.ID, size int64) error {
|
||||||
|
|
Loading…
Reference in a new issue