summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2025-04-29 19:51:15 +0100
committerLeah Rowe <leah@libreboot.org>2025-04-29 19:51:15 +0100
commit80007223c853d9a4e07e983cad7ad61b42637542 (patch)
tree18ce215d15a14ca5410f6f68f667031088024779
parenta16c483e5fd91b355ec80d741ca80d914402d0da (diff)
lib.sh: Provide printf for mktarball
Just to let the user know lbmk hasn't died. Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r--include/lib.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/lib.sh b/include/lib.sh
index 5e88fa54..7a5f2621 100644
--- a/include/lib.sh
+++ b/include/lib.sh
@@ -24,6 +24,7 @@ mkrom_tarball()
mktarball()
{
+ printf "Creating tar archive '%s' from directory '%s'\n" "$2" "$1"
[ "${2%/*}" = "$2" ] || x_ mkdir -p "${2%/*}"
x_ tar -c "$1" | xz -T$XBMK_THREADS -9e > "$2" || $err "mktarball2, $1"
}