lib.sh: Remove useless command in err()

We don't need this, since we're exiting anyway.

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2025-05-07 16:23:12 +01:00
parent 394b4ea7a5
commit 7f71328f0e
-1
View File
@@ -168,7 +168,6 @@ x_()
err() err()
{ {
set -u -e
[ $# -lt 1 ] || printf "ERROR %s: %s\n" "$0" "$1" 1>&2 || : [ $# -lt 1 ] || printf "ERROR %s: %s\n" "$0" "$1" 1>&2 || :
exit 1 exit 1
} }