Added functional 'paru-update-all'

This commit is contained in:
Allen
2023-08-04 18:24:11 -05:00
parent a244c779f5
commit 253837a1cb

View File

@ -25,7 +25,7 @@ read -p "DO YOU WANT TO UPDATE DANGEROUS PACKAGES TOO?
RECOMMENDED EVERY 3 MONTHS (y/N): " -i "y" USER_AGREEMENT RECOMMENDED EVERY 3 MONTHS (y/N): " -i "y" USER_AGREEMENT
if [ "$USER_AGREEMENT" == "y" ]; then if [ "$USER_AGREEMENT" == "y" ]; then
# Install packages bypassing IgnorePgk # Install packages bypassing IgnorePgk
sed '/^IgnorePkg/d' /etc/pacman.conf > /tmp/432143214 | paru -Syu --config /tmp/432143214; rm /tmp/432143214 sed '/^IgnorePkg/d' /etc/pacman.conf > /tmp/432143214; paru -Syu --config /tmp/432143214; rm /tmp/432143214
fi fi
echo -e "\nUPDATE COMPLETED!"$NC echo -e "\nUPDATE COMPLETED!"$NC