mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-04-10 19:15:12 +00:00
BIOS_CHECKER: fixed bios not being replaced
This commit is contained in:
parent
d02964f133
commit
9f092112ff
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue