BIOS_CHECKER: fixed bios not being replaced

This commit is contained in:
XargonWan 2025-02-21 11:07:11 +09:00
parent d02964f133
commit 9f092112ff

View file

@ -984,7 +984,7 @@ configurator_bios_checker() {
bios_systems=$(echo "$entry" | jq -r '.value.system | if type=="array" then join(", ") else . end // "Unknown"')
bios_desc=$(echo "$entry" | jq -r '.value.description // "No description provided"')
required=$(echo "$entry" | jq -r '.value.required // "No"')
bios_paths=$(echo "$entry" | jq -r '.value.paths | if type=="array" then join(", ") else . end // "'"$bios_folder"'"' | sed "s|$rdhome/||")
bios_paths=$(echo "$entry" | jq -r '.value.paths // "'"$bios_folder"'" | if type=="array" then join(", ") else . end')
log d "Checking entry $bios_entry"