From a15c816159c3c7cdbcf5a7e452e476bc7ee789fc Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Tue, 11 Mar 2025 17:36:15 +0900 Subject: [PATCH] updated uninstall.sh --- uninstall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uninstall.sh b/uninstall.sh index a68f704..3d03d59 100755 --- a/uninstall.sh +++ b/uninstall.sh @@ -51,7 +51,7 @@ remove_packages() { # Check if the package is installed using dpkg (apt's underlying tool) if dpkg -l | grep -q "^ii $package "; then echo "Removing package: $package" - if ! sudo apt remove --purge -y "$package"; then + if ! sudo apt remove -y "$package"; then echo "$ERROR Failed to remove package: $package" else echo "$OK Successfully removed package: $package"