From fea05585f74d4383a20ea37a466dc0f00d8c6956 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Fri, 17 Nov 2023 15:57:37 +0100 Subject: [PATCH] modbuild: typo in std::die() message fixed --- Pmodules/modbuild.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Pmodules/modbuild.in b/Pmodules/modbuild.in index d6b1b5b..b91cf1f 100755 --- a/Pmodules/modbuild.in +++ b/Pmodules/modbuild.in @@ -698,9 +698,10 @@ build_modules_yaml_v1(){ std::die 3 "Oops: retrieving keys from:\n${yaml_input}" debug "config keys: ${keys[@]}" for key in "${keys[@]}"; do + key="${key,,}" [[ -v dfl[$key] ]] || \ std::die 3 "%s -- %s\n%s" \ - "Ivalid key in configuration" \ + "Invalid key in configuration" \ "${key}" "${yaml_input}" case ${key} in compile_in_sourcetree )