option.sh: print the config filename being checked

Signed-off-by: Leah Rowe <leah@libreboot.org>
audit2-merge1
Leah Rowe 2024-05-18 19:44:44 +01:00 committed by Leah Rowe
parent 9fd504e24a
commit c28166ff9e
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ EOF
check_defconfig()
{
for x in "${1}"/config/*; do
[ -f "${x}" ] && return 1
[ -f "${x}" ] && printf "%s\n" "$x" && return 1
done
}