From fa14880742149a1676d977b39d041e8053ff5027 Mon Sep 17 00:00:00 2001 From: Einar Forselv Date: Sun, 8 Dec 2019 04:50:33 +0100 Subject: [PATCH] Indicate we might want to run check with --with-cache --- src/restic_compose_backup/restic.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/restic_compose_backup/restic.py b/src/restic_compose_backup/restic.py index c1b2410..1281a95 100644 --- a/src/restic_compose_backup/restic.py +++ b/src/restic_compose_backup/restic.py @@ -87,6 +87,7 @@ def prune(repository: str): def check(repository: str): return commands.run(restic(repository, [ "check", + # "--with-cache", ]))