From 00263cf608e27a87de830c46b56d679d2bd0be29 Mon Sep 17 00:00:00 2001 From: Kappeh Date: Mon, 26 Jan 2026 19:06:44 +0000 Subject: [PATCH] Fix restore script --- scripts/restore.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/restore.sh b/scripts/restore.sh index 804518f..07a610f 100755 --- a/scripts/restore.sh +++ b/scripts/restore.sh @@ -209,7 +209,7 @@ cmd_restore() { ;; *) - POS_ARGS="$POS_ARGS \"$1\"" + POS_ARGS="$POS_ARGS $1" ;; esac shift @@ -257,7 +257,7 @@ cmd_restore() { echo "Restoring from backup: $BACKUP_DIR" # Ensure stack is not running - docker compose down + docker compose down > /dev/null 2>&1 # Create snapshot to revert to on failure trap restore_cleanup_trap HUP INT QUIT ABRT TERM