From f23da55693ae45889c0e099d2f9b26dd8340097b Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Fri, 14 Feb 2025 16:55:40 +0100 Subject: [PATCH] build(docker/fradrive): remove path-quoting for settings files --- docker/fradrive/fradrive-entrypoint.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/fradrive/fradrive-entrypoint.sh b/docker/fradrive/fradrive-entrypoint.sh index e52506ce2..10e92f6f8 100644 --- a/docker/fradrive/fradrive-entrypoint.sh +++ b/docker/fradrive/fradrive-entrypoint.sh @@ -10,7 +10,8 @@ configDir=${CONFIG_DIR-/cfg} configs=() if [[ -d "${configDir}" ]]; then while IFS= read -d $'\0' cfg; do - configs+=("${(q)cfg}") + # IMPORTANT: The paths to the settings-yaml-files should not contain spaces, otherwise this might fail runtime! + configs+=("${cfg}") done < <(find "${configDir}" \( -name '*.yml' -o -name '*.yaml' \) -print0 | sort -rz) fi