lib.sh: add a return to the end of check_defconfig
Signed-off-by: Leah Rowe <leah@libreboot.org>audit6
parent
144b3c93a4
commit
35d09e426a
|
@ -127,7 +127,7 @@ check_defconfig()
|
||||||
[ -d "$1" ] || $err "Target '$1' not defined."
|
[ -d "$1" ] || $err "Target '$1' not defined."
|
||||||
for x in "$1"/config/*; do
|
for x in "$1"/config/*; do
|
||||||
[ -f "$x" ] && printf "%s\n" "$x" && return 1
|
[ -f "$x" ] && printf "%s\n" "$x" && return 1
|
||||||
done
|
done; return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
remkdir()
|
remkdir()
|
||||||
|
|
Loading…
Reference in New Issue