lib.sh: condense err_() a bit

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2024-06-28 13:41:22 +01:00
parent e3546f77b8
commit 5725e3c4ee
+1 -2
View File
@@ -19,8 +19,7 @@ err="err_"
err_()
{
printf "ERROR %s: %s\n" "$0" "$1" 1>&2
exit 1
printf "ERROR %s: %s\n" "$0" "$1" 1>&2; exit 1
}
setvars()