From 5416687af23f459e8c39db62020d44d4bfb3213b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C4=83rcziem=20=E2=84=A2?= <118485377+spalencsar@users.noreply.github.com> Date: Fri, 3 Oct 2025 09:31:38 +0200 Subject: [PATCH] Remove existing config file before creating new one to prevent loading old config --- setup.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.sh b/setup.sh index f3fe296..f86d8fb 100644 --- a/setup.sh +++ b/setup.sh @@ -270,6 +270,8 @@ load_or_create_config() { log_info "Loading configuration..." # Temporarily force new configuration for debugging + # Remove any existing config file to ensure clean state + rm -f "${CONFIG_FILE}" log_info "Creating new configuration..." create_interactive_config load_config # Load the new configuration