diff options
author | Leah Rowe <leah@libreboot.org> | 2024-12-30 00:50:53 +0000 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-12-30 01:02:22 +0000 |
commit | e565df94fd7a6a4fb2b6a51c3cd938825c66390e (patch) | |
tree | cd8367ed4146962695bf82ced4ec76ba1dc116df /script/trees | |
parent | c80cc0a00b6fbe5e94bb35c5760e224ce70c09f0 (diff) |
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>
Diffstat (limited to 'script/trees')
-rwxr-xr-x | script/trees | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/trees b/script/trees index b9fd21eb..57e19b63 100755 --- a/script/trees +++ b/script/trees @@ -294,6 +294,6 @@ copy_elf() done < "$listfile"; x_ make clean -C "$srcdir" $cleanargs } -main $@ || exit 0 +main "$@" || exit 0 . "$mkhelpercfg" $cmd |