From b9fcbd90bbe9686b8ee8e5343535581ba89844bc Mon Sep 17 00:00:00 2001 From: pi-farm Date: Sun, 28 Sep 2025 13:07:24 +0200 Subject: [PATCH] fix function load_project_config --- scripts/image-builder.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/image-builder.sh b/scripts/image-builder.sh index fbea139..d3d5cde 100755 --- a/scripts/image-builder.sh +++ b/scripts/image-builder.sh @@ -598,8 +598,8 @@ EOF # Projektparameter laden load_project_config() { - local project="$1" - local config_file="$PROJECT_CONFIG_DIR/$project/config-file" + project="$1" + config_file="$PROJECT_CONFIG_DIR/$project/config-file" if [[ -f "$config_file" ]]; then echo "Lade Konfiguration für Projekt: $project" image_name=$(grep "^image_name=" "$config_file" | cut -d= -f2)