mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-13 06:49: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
@@ -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"; :
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -80,7 +80,7 @@ install_packages()
|
||||
printf "You need AUR packages: %s\n" "$aur_notice" 1>&2; return 0
|
||||
}
|
||||
if [ $# -gt 0 ] && [ "$1" = "dependencies" ]; then
|
||||
install_packages $@ || exit 1
|
||||
install_packages "$@" || exit 1
|
||||
exit 0
|
||||
fi
|
||||
|
||||
@@ -119,7 +119,7 @@ expr "X$XBMK_THREADS" : "X-\{0,1\}[0123456789][0123456789]*$" \
|
||||
1>/dev/null 2>/dev/null || export XBMK_THREADS=1 # user gave a non-integer
|
||||
|
||||
x_() {
|
||||
[ $# -lt 1 ] || $@ || \
|
||||
[ $# -lt 1 ] || "$@" || \
|
||||
$err "Unhandled non-zero exit: $(echo "$@")"; return 0
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user