From 9888443f5cda773a09f75a4c310bfa381ca55b21 Mon Sep 17 00:00:00 2001 From: Ben Wiederhake Date: Mon, 30 Jan 2023 14:20:30 +0100 Subject: [PATCH] check: Document behavior of --with-cache a bit better Also see https://forum.restic.net/t/how-to-speed-up-tiny-incremental-checks/5905 --- cmd/restic/cmd_check.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/restic/cmd_check.go b/cmd/restic/cmd_check.go index be9dd5130..d56f7d0c9 100644 --- a/cmd/restic/cmd_check.go +++ b/cmd/restic/cmd_check.go @@ -65,7 +65,7 @@ func init() { // MarkDeprecated only returns an error when the flag is not found panic(err) } - f.BoolVar(&checkOptions.WithCache, "with-cache", false, "use the cache") + f.BoolVar(&checkOptions.WithCache, "with-cache", false, "use existing cache, only read uncached data from repository") } func checkFlags(opts CheckOptions) error {