From ca95b3b0d0d66139ea96a417e5107f5739c478ed Mon Sep 17 00:00:00 2001 From: Botspot Date: Thu, 12 Aug 2021 17:03:23 -0500 Subject: [PATCH] TBOPlayer: skip uninstall script if file not found --- apps/TBOPlayer/uninstall | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/apps/TBOPlayer/uninstall b/apps/TBOPlayer/uninstall index e23d838..12c6ee5 100755 --- a/apps/TBOPlayer/uninstall +++ b/apps/TBOPlayer/uninstall @@ -8,5 +8,8 @@ function error { } "${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1 -#run uninstall script, saying 'yes' to the first question, and 'no' to the second question -echo -e "y\nn" | /opt/tboplayer/setup.sh uninstall || error "failed to uninstall!" +if [ -f /opt/tboplayer/setup.sh ];then + #run uninstall script, saying 'yes' to the first question, and 'no' to the second question + echo -e "y\nn" | /opt/tboplayer/setup.sh uninstall || error "failed to uninstall!" +fi +exit 0