mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-11 05:52:36 +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
@@ -115,7 +115,7 @@ tmpclone()
|
||||
git_am_patches "$3" "$5"
|
||||
) || repofail="y"
|
||||
|
||||
[ "$repofail" = "y" ] && [ $# -lt 6 ] && tmpclone $@ retry
|
||||
[ "$repofail" = "y" ] && [ $# -lt 6 ] && tmpclone "$@" retry
|
||||
[ "$repofail" = "y" ] && $err "!clone $1 $2 $3 $4 $5"; :
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user