From 19ce91b31ab602222adedd4078f1226b59c26092 Mon Sep 17 00:00:00 2001 From: mo1ein Date: Mon, 17 Aug 2020 13:20:18 +0430 Subject: [PATCH] Fix some typos on uninstaller.sh file --- scripts/uninstaller.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/uninstaller.sh b/scripts/uninstaller.sh index 7ffd3ec..b21c7d4 100755 --- a/scripts/uninstaller.sh +++ b/scripts/uninstaller.sh @@ -28,14 +28,14 @@ main(){ #Unlink command if [ -L "$CMD_PATH" ];then echo "remove launcher command..." - sudo unlink "$CMD_PATH" || error2 "couln't remove launcher command" + sudo unlink "$CMD_PATH" || error2 "couldn't remove launcher command" else echo "launcher command Not Found!" fi #delete desktop entry if [ -f "$ENTRY_PATH" ];then - echo "remove dekstop entry...." + echo "remove desktop entry...." echo "$SCR_PATH" sudo rm "$ENTRY_PATH" || error2 "couldn't remove desktop entry" else