lib.sh: re-add missing break in fe/fx_

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2025-05-06 20:24:32 +01:00
parent 03300766d1
commit fac99aa2d4
+2 -2
View File
@@ -160,14 +160,14 @@ find_ex()
xx="$1" && shift 1
$xmsg find "$@" 2>/dev/null | sort 1>"$fd" 2>/dev/null || \
err "!find $(echo "$@") > \"$fd\""
dx_ "$xx" "$fd"
dx_ "$xx" "$fd" || break
x_ rm -f "$fd"
}
dx_()
{
[ -f "$2" ] && while read -r fx; do
$1 "$fx"
$1 "$fx" || return 1
done < "$2"; :
}