Fix some typos on uninstaller.sh file

This commit is contained in:
mo1ein 2020-08-17 13:20:18 +04:30
parent caac43300a
commit 19ce91b31a
1 changed files with 2 additions and 2 deletions

View File

@ -28,14 +28,14 @@ main(){
#Unlink command #Unlink command
if [ -L "$CMD_PATH" ];then if [ -L "$CMD_PATH" ];then
echo "remove launcher command..." 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 else
echo "launcher command Not Found!" echo "launcher command Not Found!"
fi fi
#delete desktop entry #delete desktop entry
if [ -f "$ENTRY_PATH" ];then if [ -f "$ENTRY_PATH" ];then
echo "remove dekstop entry...." echo "remove desktop entry...."
echo "$SCR_PATH" echo "$SCR_PATH"
sudo rm "$ENTRY_PATH" || error2 "couldn't remove desktop entry" sudo rm "$ENTRY_PATH" || error2 "couldn't remove desktop entry"
else else