prune: Don't show "packs processed" for quiet runs

This commit is contained in:
Michael Eischer 2023-01-14 18:26:57 +01:00
parent 551b31ce3c
commit 1f3f68b2c0
2 changed files with 8 additions and 1 deletions

View File

@ -0,0 +1,7 @@
Bugfix: Make `prune --quiet` not print progress
We have fixed a regression in restic 0.15.0 which caused `prune --quiet` to
show a progress bar while deciding how to process each pack files.
https://github.com/restic/restic/issues/4147
https://github.com/restic/restic/pull/4153

View File

@ -473,7 +473,7 @@ func decidePackAction(ctx context.Context, opts PruneOptions, repo restic.Reposi
}
// loop over all packs and decide what to do
bar := newProgressMax(quiet, uint64(len(indexPack)), "packs processed")
bar := newProgressMax(!quiet, uint64(len(indexPack)), "packs processed")
err := repo.List(ctx, restic.PackFile, func(id restic.ID, packSize int64) error {
p, ok := indexPack[id]
if !ok {