From 5886337161ea69fa8bb23eaf5571439ed3d0697d Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Fri, 28 Jun 2024 18:41:06 +0200 Subject: [PATCH] reuse sleep, it does not status 1 on exit than read -r -t --- usr/lib/archboot/update/manage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/update/manage.sh b/usr/lib/archboot/update/manage.sh index 0c20f5845..53e55621e 100644 --- a/usr/lib/archboot/update/manage.sh +++ b/usr/lib/archboot/update/manage.sh @@ -294,7 +294,7 @@ _new_environment() { kexec -c -f "${_RAM}/${_VMLINUZ}" --initrd="${_RAM}/${_INITRD}" --reuse-cmdline & while true; do _clean_kernel_cache - read -r -t 1 + sleep 1 printf "\ec" done }