2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-29 07:00:49 +00:00

forget: Enable --dry-run together with --prune

This commit is contained in:
Alexander Neumann 2020-12-22 20:58:02 +01:00
parent f7c7c2f730
commit edf89e1c74

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))
}