replace Restore with Restoring

This commit is contained in:
Tobias Powalowski 2023-01-19 09:20:06 +01:00
parent c77373ae11
commit 95d975f177

View file

@ -120,13 +120,13 @@ _x86_64_pacman_restore() {
if [[ -z "${_CUSTOM_PACMAN_CONF}" ]]; then if [[ -z "${_CUSTOM_PACMAN_CONF}" ]]; then
echo "System's ${_PACMAN_CONF} used..." echo "System's ${_PACMAN_CONF} used..."
else else
echo "Restore system's ${_PACMAN_CONF}..." echo "Restoring system's ${_PACMAN_CONF}..."
cp "${_PACMAN_CONF}".old "${_PACMAN_CONF}" cp "${_PACMAN_CONF}".old "${_PACMAN_CONF}"
fi fi
if [[ -z "${_CUSTOM_MIRRORLIST}" ]]; then if [[ -z "${_CUSTOM_MIRRORLIST}" ]]; then
echo "System's ${_PACMAN_MIRROR} used..." echo "System's ${_PACMAN_MIRROR} used..."
else else
echo "Restore system's ${_PACMAN_MIRROR}..." echo "Restoring system's ${_PACMAN_MIRROR}..."
cp "${_PACMAN_MIRROR}".old "${_PACMAN_MIRROR}" cp "${_PACMAN_MIRROR}".old "${_PACMAN_MIRROR}"
fi fi
} }