From ea79bc640814d8ec513eb9fbd209d7bd02b59f3f Mon Sep 17 00:00:00 2001 From: Botspot Date: Fri, 13 Aug 2021 22:21:53 -0500 Subject: [PATCH] Arduino: warn but exit 0 if uninstall.sh missing --- apps/Arduino/uninstall | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/apps/Arduino/uninstall b/apps/Arduino/uninstall index 15d5c74..fdaf7bd 100755 --- a/apps/Arduino/uninstall +++ b/apps/Arduino/uninstall @@ -9,9 +9,14 @@ function error { VERSION=arduino-1.8.15 -cd ~/.local/share - -$VERSION/uninstall.sh || error "Failed to run uninstall.sh as $USER user" -sudo $VERSION/uninstall.sh || error "Failed to run uninstall.sh as root user" -rm -rf $VERSION || error "Failed to remove arduino-1.8.13 folder" +if [ -f ~/.local/share/$VERSION/uninstall.sh ];then + cd ~/.local/share + $VERSION/uninstall.sh || error "Failed to run uninstall.sh as $USER user" + sudo $VERSION/uninstall.sh || error "Failed to run uninstall.sh as root user" + rm -rf $VERSION || error "Failed to remove $VERSION folder" + cd +else + echo "WARNING: Arduino's uninstall.sh script was not found! Most likely it was never fully installed." +fi +exit 0