From d9ff1841478f189487942832cfbbad1b7991a1c0 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Tue, 1 Aug 2023 12:32:36 +0200 Subject: [PATCH] add progressbar for full system --- usr/lib/archboot/update/update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/update/update.sh b/usr/lib/archboot/update/update.sh index d7002ee03..195bb5fa8 100644 --- a/usr/lib/archboot/update/update.sh +++ b/usr/lib/archboot/update/update.sh @@ -485,7 +485,7 @@ _full_system() { for i in ${_PACKAGES}; do pacman -S --noconfirm ${i} >"${_LOG}" 2>&1 || exit 1 if [[ "$((${_COUNT}*100/${_PACKAGE_COUNT}-4))" -gt 1 ]]; then - progress "$((${_COUNT}*100/${_PACKAGE_COUNT}-4))" "${_KEEP} Reinstalling all packages..." + _progress "$((${_COUNT}*100/${_PACKAGE_COUNT}-4))" "${_KEEP} Reinstalling all packages..." fi _COUNT="$((${_COUNT}+1))" done