mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-18 04:22:15 +02:00
lib.sh: re-add missing break in fe/fx_
Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
+2
-2
@@ -160,14 +160,14 @@ find_ex()
|
|||||||
xx="$1" && shift 1
|
xx="$1" && shift 1
|
||||||
$xmsg find "$@" 2>/dev/null | sort 1>"$fd" 2>/dev/null || \
|
$xmsg find "$@" 2>/dev/null | sort 1>"$fd" 2>/dev/null || \
|
||||||
err "!find $(echo "$@") > \"$fd\""
|
err "!find $(echo "$@") > \"$fd\""
|
||||||
dx_ "$xx" "$fd"
|
dx_ "$xx" "$fd" || break
|
||||||
x_ rm -f "$fd"
|
x_ rm -f "$fd"
|
||||||
}
|
}
|
||||||
|
|
||||||
dx_()
|
dx_()
|
||||||
{
|
{
|
||||||
[ -f "$2" ] && while read -r fx; do
|
[ -f "$2" ] && while read -r fx; do
|
||||||
$1 "$fx"
|
$1 "$fx" || return 1
|
||||||
done < "$2"; :
|
done < "$2"; :
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user