Merge pull request #3188 from restic/forget-prune-dry-run

forget: Enable --dry-run together with --prune
This commit is contained in:
rawtaz 2020-12-22 21:09:15 +01:00 committed by GitHub
commit ec59c73489
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ func runForget(opts ForgetOptions, gopts GlobalOptions, args []string) error {
}
}
if len(removeSnIDs) > 0 && opts.Prune && !opts.DryRun {
if len(removeSnIDs) > 0 && opts.Prune {
if !gopts.JSON {
Verbosef("%d snapshots have been removed, running prune\n", len(removeSnIDs))
}