From 3ab2b8b8cea8a52908bd1b553e2a5e1c490aeb99 Mon Sep 17 00:00:00 2001 From: Botspot Date: Tue, 10 Aug 2021 13:32:14 -0500 Subject: [PATCH] make conky and browsh uninstall successfully to fix error log --- apps/Browsh/uninstall | 7 +++++-- apps/Conky/uninstall | 2 ++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/apps/Browsh/uninstall b/apps/Browsh/uninstall index 20c717a..b8f72bd 100755 --- a/apps/Browsh/uninstall +++ b/apps/Browsh/uninstall @@ -7,8 +7,11 @@ function error { exit 1 } -sudo apt purge -y browsh || error 'Failed to remove browsh!' -sudo rm ~/.local/share/applications/browsh.desktop +if command -v browsh >/dev/null ;then + sudo apt purge -y browsh || error 'Failed to remove browsh!' +fi + +sudo rm -f ~/.local/share/applications/browsh.desktop #if your app installs any packages, keep this command here so those packages will be removed. "${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1 diff --git a/apps/Conky/uninstall b/apps/Conky/uninstall index 82186e3..c38f577 100755 --- a/apps/Conky/uninstall +++ b/apps/Conky/uninstall @@ -12,3 +12,5 @@ function error { rm -f ~/.config/autostart/conky.desktop ~/.conkyrc || error "Failed to remove autostart file or .conkyrc!" killall conky 2>/dev/null + +exit 0