diff options
author | Leah Rowe <leah@libreboot.org> | 2024-06-27 14:06:08 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-06-27 14:06:08 +0100 |
commit | 35d09e426a82f805001c371006f59fffe4b0450e (patch) | |
tree | 02ab83c9763ead9cd09b08cc531c0fad3ad8bd74 /include/lib.sh | |
parent | 144b3c93a4d84d3095e1e0def1464025fff27976 (diff) |
lib.sh: add a return to the end of check_defconfig
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/lib.sh')
-rwxr-xr-x | include/lib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lib.sh b/include/lib.sh index 1e860794..5b21d81c 100755 --- a/include/lib.sh +++ b/include/lib.sh @@ -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() |