diff options
author | Leah Rowe <leah@libreboot.org> | 2024-05-18 19:44:44 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-05-18 19:45:52 +0100 |
commit | 8418ea9ab2dbcf13ebbfa23cd620a1bf108a24f3 (patch) | |
tree | 90097d5c3050bb77b9d18572900296db9e6880d9 /include/option.sh | |
parent | 53b394f583cb0e2afce22cd759d4100a9a8a588f (diff) |
vendor.sh: greatly simplified config handling
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/option.sh')
-rwxr-xr-x | include/option.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/option.sh b/include/option.sh index 1114611b..3d9f4536 100755 --- a/include/option.sh +++ b/include/option.sh @@ -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 } |