make --delete in restic restore detault behaviour #94

Merged
moritz merged 1 commits from feature/makeDeleteDefault into main 2026-08-31 17:51:21 +00:00
+1 -1
View File
@@ -225,7 +225,7 @@ def restore_path(snapshot_id, target, noninteractive, paths):
def restic_restore(snapshot_id, include=[], target_dir=None):
cmd = restic.cat.base_command() + ["restore", snapshot_id]
cmd = restic.cat.base_command() + ["restore", snapshot_id, "--delete"]
for path in include:
cmd.extend(["--include", path])
if target_dir: