summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2026-07-21 20:23:12 +0100
committerLeah Rowe <leah@libreboot.org>2026-07-21 20:23:12 +0100
commit8d9d1a88a03c7abe91d2b805fb0b7d58f81bc073 (patch)
treeef4ecf45490e819b80d468d46c07bb355a713706
parente1384a1b9f2d96d96dce52427e86187dbece5a84 (diff)
init.sh: fix bad printf string in gentoo check
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r--include/init.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/init.sh b/include/init.sh
index 602e308a..ba442062 100644
--- a/include/init.sh
+++ b/include/init.sh
@@ -94,7 +94,7 @@ xbmkpkg()
fi
printf "Updating package use...\n"
- printf "Writing into $pkg_use_file..."
+ printf "Writing into %s" "$pkg_use_file..."
if [ ! -d "`dirname $pkg_use_file`" ]; then
mkdir -p "`dirname $pkg_use_file`"