Merge pull request #48 from mo1ein/fix-some-typos

Fix some typos on uninstaller.sh file
This commit is contained in:
victor 2020-08-17 22:05:05 +04:30 committed by GitHub
commit 93e35b4990
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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