fix function load_project_config

This commit is contained in:
2025-09-28 13:07:24 +02:00
parent 8c93c3c273
commit b9fcbd90bb

View File

@@ -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)