From e2e2e477385a48b8b88c9e5a3f5b2da68bd334b6 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Tue, 11 Mar 2025 18:19:41 +0900 Subject: [PATCH] stepped down to pacman -R --- uninstall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uninstall.sh b/uninstall.sh index f1256a7..f7b7237 100755 --- a/uninstall.sh +++ b/uninstall.sh @@ -50,7 +50,7 @@ remove_packages() { while read -r package; do if pacman -Qi "$package" &> /dev/null; then echo "Removing package: $package" - if ! sudo pacman -Rsc --noconfirm "$package"; then + if ! sudo pacman -R --noconfirm "$package"; then echo "$ERROR Failed to remove package: $package" else echo "$OK Successfully removed package: $package"