diff --git a/cmd/restic/cmd_check.go b/cmd/restic/cmd_check.go index e5aebc6e4..642a46c00 100644 --- a/cmd/restic/cmd_check.go +++ b/cmd/restic/cmd_check.go @@ -315,11 +315,7 @@ func runCheck(ctx context.Context, opts CheckOptions, gopts GlobalOptions, args for err := range errChan { errorsFound = true if e, ok := err.(*checker.TreeError); ok { - var clean string - if stdoutCanUpdateStatus() { - clean = clearLine(0) - } - printer.E(clean+"error for tree %v:\n", e.ID.Str()) + printer.E("error for tree %v:\n", e.ID.Str()) for _, treeErr := range e.Errors { printer.E(" %v\n", treeErr) }