lib.sh: add a return to the end of check_defconfig

Signed-off-by: Leah Rowe <leah@libreboot.org>
audit2
Leah Rowe 2024-06-27 14:06:08 +01:00 committed by Leah Rowe
parent 94d9d313cc
commit de331e5da0
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ check_defconfig()
[ -d "$1" ] || $err "Target '$1' not defined."
for x in "$1"/config/*; do
[ -f "$x" ] && printf "%s\n" "$x" && return 1
done
done; return 0
}
remkdir()