From f3afd46abcc0b18532b60abebfe6045e11353e22 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:14:03 +0200 Subject: [PATCH] Fix config loading after creation - Load config after create_interactive_config to set variables in shell - Ensures INSTALL_* variables are properly set for installation logic --- setup.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.sh b/setup.sh index 9382db2..15c2b4a 100644 --- a/setup.sh +++ b/setup.sh @@ -274,10 +274,12 @@ load_or_create_config() { if ! validate_config; then log_warning "Configuration validation failed - creating new configuration" create_interactive_config + load_config # Reload the new configuration fi else log_info "Creating new configuration..." create_interactive_config + load_config # Load the new configuration fi }