From f94b31b82c51b1e2cd4a3f4e55c2ff76f3e0149d Mon Sep 17 00:00:00 2001 From: mcguirepr89 <60325264+mcguirepr89@users.noreply.github.com> Date: Thu, 7 Oct 2021 12:18:01 -0400 Subject: [PATCH] Update uninstall.sh --- scripts/uninstall.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/uninstall.sh b/scripts/uninstall.sh index 7cc76ab..adc6db9 100755 --- a/scripts/uninstall.sh +++ b/scripts/uninstall.sh @@ -90,8 +90,8 @@ remove_icecast() { remove_scripts() { for i in "${SCRIPTS[@]}";do - if [ -L "${i}" ];then - sudo rm -v "${i}" + if [ -L "/usr/local/bin/${i}" ];then + sudo rm -v "/usr/local/bin/${i}" fi done }