summaryrefslogtreecommitdiff
path: root/lbmk
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2023-08-17 11:55:38 +0100
committerLeah Rowe <leah@libreboot.org>2023-08-17 11:56:17 +0100
commit63b0e99f6c4184466b33b166d1558c9b8b5c8702 (patch)
tree20cdcdccc0108fe9181c13c498f231bc11211373 /lbmk
parent0848622799b8c627cd650d848ffa7d592d80b26d (diff)
don't call blobutil directly from lbmk
it's bloat, and was only there for backwards compatibility with the old commands, but the new commands are e.g. ./update blobs inject instead of: ./blobutil inject this results in a slight code size reduction in lbmk Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'lbmk')
-rwxr-xr-xlbmk5
1 files changed, 1 insertions, 4 deletions
diff --git a/lbmk b/lbmk
index c4bc3f3e..3f472b1e 100755
--- a/lbmk
+++ b/lbmk
@@ -33,10 +33,7 @@ main()
{
if [ "${0##*/}" = "lbmk" ]; then
die "Do not run the lbmk script directly!"
- elif [ "${0##*/}" = "blobutil" ]; then
- ./update blobs $@ || exit 1
- exit 0
- elif [ $# -lt 1 ]; then
+ elif [ $# -lt 2 ]; then
die "Too few arguments. Try: ${0} help"
fi