From f7798512325fd1718b3f796fa212b0afb5e56719 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Wed, 17 Jul 2024 07:11:43 +0200 Subject: [PATCH] use comment instead of echo --- usr/lib/archboot/cpio/cpio.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/cpio/cpio.sh b/usr/lib/archboot/cpio/cpio.sh index 10dae117d..92e2bfdeb 100644 --- a/usr/lib/archboot/cpio/cpio.sh +++ b/usr/lib/archboot/cpio/cpio.sh @@ -268,7 +268,7 @@ _create_cpio() { fd . -t f -t l -u -e 'bz2' -e 'gz' -e 'xz' -e 'zst' --min-depth 1 -0 | sort -z | LC_ALL=C.UTF-8 bsdtar --null -cnf - -T - | LC_ALL=C.UTF-8 bsdtar --null -cf - --format=newc @- >> "${_GENERATE_IMAGE}" || _abort "Image creation failed!" - echo "Removing compressed files..." + # remove compressed files, timestamps need reset! fd . -u -e 'bz2' -e 'gz' -e 'xz' -e 'zst' --min-depth 1 -X rm fd . -u --min-depth 1 -X touch -hcd "@0" echo "Appending zstd compressed image..."