From befeaf44cb7746a87a2262d5632993c125206e81 Mon Sep 17 00:00:00 2001 From: Benjamin Toby Date: Mon, 26 Jan 2026 16:50:05 +0100 Subject: [PATCH] Updates --- scripts/restore.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/scripts/restore.ts b/scripts/restore.ts index 7db6497..e338d29 100644 --- a/scripts/restore.ts +++ b/scripts/restore.ts @@ -25,6 +25,9 @@ execSync(`tar -xJvf ${R2_FILE_NAME}`, { /** * # Sync Docker Volumes */ -execSync(`rsync -avz --ignore-existing ${BACKUP_DIR}/docker/ ${DOCKER_DIR}/`, { - ...execOpts, -}); +execSync( + `rsync -avz --ignore-existing ${BACKUP_DIR}/.backup/docker/ ${DOCKER_DIR}/`, + { + ...execOpts, + }, +);