mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-22 14:36:31 +02:00
init.sh: double-quote variables in gentoo check
yes. silly twit. Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
+3
-3
@@ -96,11 +96,11 @@ xbmkpkg()
|
||||
printf "Updating package use...\n"
|
||||
printf "Writing into $pkg_use_file..."
|
||||
|
||||
if [ ! -d `dirname $pkg_use_file` ]; then
|
||||
mkdir `dirname $pkg_use_file`
|
||||
if [ ! -d "`dirname $pkg_use_file`" ]; then
|
||||
mkdir "`dirname $pkg_use_file`"
|
||||
fi
|
||||
|
||||
printf "%s\n" "$pkg_use" >> $pkg_use_file
|
||||
printf "%s\n" "$pkg_use" >> "$pkg_use_file"
|
||||
fi
|
||||
|
||||
x_ $pkg_add $pkglist
|
||||
|
||||
Reference in New Issue
Block a user