lib.sh: rename errx to xmsg

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2025-05-04 09:17:23 +01:00
parent 59c94664e3
commit 3f7dc2a55f

View File

@@ -156,10 +156,10 @@ fx_()
find_ex()
{
errx="$1" && shift 1
xmsg="$1" && shift 1
fd="`mktemp`" && x_ rm -f "$fd" && x_ touch "$fd"
xx="$1" && shift 1
$errx find "$@" 2>/dev/null | sort > "$fd" || \
$xmsg find "$@" 2>/dev/null | sort > "$fd" || \
$err "!find $(echo "$@") > \"$fd\""
while read -r fx; do
$xx "$fx" || break; :