summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2025-05-10 20:48:38 +0100
committerLeah Rowe <leah@libreboot.org>2025-05-10 20:48:38 +0100
commita0c436ad4bae62bf6d237bd093b2bd2dcfdb8efb (patch)
treeb9dc0483d6e6cc4eeb75da3a24dc20f66e5b5a02
parentdcfd3e632e279480a2b6e0f6172c8fd595548c13 (diff)
inject.sh: Remove confusing path on tar creation
The path is wrong. The correct path is printed afterward. Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r--include/inject.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/inject.sh b/include/inject.sh
index 6e8fa320..ae6fcc58 100644
--- a/include/inject.sh
+++ b/include/inject.sh
@@ -145,7 +145,8 @@ remktar()
{
(
x_ cd "${tmpromdir%"/bin/$board"}"
- mkrom_tarball "bin/$board"
+ printf "Re-building tar archive (please wait)\n"
+ mkrom_tarball "bin/$board" 1>/dev/null
) || err "Cannot re-generate '$archive'"
mv "${tmpromdir%"/bin/$board"}/bin/${relname}_${board}.tar.xz" \