lib.sh: condense err_() a bit

Signed-off-by: Leah Rowe <leah@libreboot.org>
audit6
Leah Rowe 2024-06-28 13:41:22 +01:00
parent e3546f77b8
commit 5725e3c4ee
1 changed files with 1 additions and 2 deletions

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()