mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-11 14:02:52 +02:00
Fix globbing issue in lbmk
When doing e.g. $@ we should use double quotes to prevent globbing. Thanks go to XRevan86 for pointing this out. Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
+1
-1
@@ -294,6 +294,6 @@ copy_elf()
|
||||
done < "$listfile"; x_ make clean -C "$srcdir" $cleanargs
|
||||
}
|
||||
|
||||
main $@ || exit 0
|
||||
main "$@" || exit 0
|
||||
. "$mkhelpercfg"
|
||||
$cmd
|
||||
|
||||
Reference in New Issue
Block a user