Merge pull request 'lbmk: Fix regressions' (#77) from nic3-14159/lbmk:fix-lbmk into master

Reviewed-on: https://codeberg.org/libreboot/lbmk/pulls/77
fsdg20230625
Leah Rowe 2023-06-12 23:39:38 +00:00
commit d617135d38
1 changed files with 2 additions and 2 deletions

4
lbmk
View File

@ -39,7 +39,7 @@ main()
elif [ "${0##*/}" = "blobutil" ]; then
./update blobs $@ || exit 1
exit 0
elif [ $# -lt 2 ]; then
elif [ $# -lt 1 ]; then
die "Too few arguments. Try: ${0} help"
fi
@ -121,7 +121,7 @@ listmodes()
die()
{
printf "Error: %s\n"; ${@} 1>&2
printf "Error: %s\n" "${@}" 1>&2
exit 1
}