From 95d975f177ea901fad9205b7c0eed7b6b2732eca Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Thu, 19 Jan 2023 09:20:06 +0100 Subject: [PATCH] replace Restore with Restoring --- usr/lib/archboot/common.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/lib/archboot/common.sh b/usr/lib/archboot/common.sh index 72fefefed..0f1d8cde3 100644 --- a/usr/lib/archboot/common.sh +++ b/usr/lib/archboot/common.sh @@ -120,13 +120,13 @@ _x86_64_pacman_restore() { if [[ -z "${_CUSTOM_PACMAN_CONF}" ]]; then echo "System's ${_PACMAN_CONF} used..." else - echo "Restore system's ${_PACMAN_CONF}..." + echo "Restoring system's ${_PACMAN_CONF}..." cp "${_PACMAN_CONF}".old "${_PACMAN_CONF}" fi if [[ -z "${_CUSTOM_MIRRORLIST}" ]]; then echo "System's ${_PACMAN_MIRROR} used..." else - echo "Restore system's ${_PACMAN_MIRROR}..." + echo "Restoring system's ${_PACMAN_MIRROR}..." cp "${_PACMAN_MIRROR}".old "${_PACMAN_MIRROR}" fi }