Skip to content

Commit

Permalink
Use /Users/balint instead of ~, removed unnecessary parameters from t…
Browse files Browse the repository at this point in the history
…he rm commands.
  • Loading branch information
balintbrews committed Apr 22, 2012
1 parent 394f52d commit e9cb6c7
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions uninstall.sh
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
#!/bin/sh
INSTALLED_TO=~
INSTALLED_TO=${HOME}

rm -rf "$INSTALLED_TO/vimrc"
echo "~/vimrc folder has been deleted."
rm -rf "$INSTALLED_TO/.vim"
rm "$INSTALLED_TO/.vim"
echo "~/.vim folder has been deleted."
rm "$INSTALLED_TO/.vimrc"
echo "~/.vimrc has been deleted."

cd ~

echo "If you want to install again, run the following command inside your home folder:"
echo "wget -O - https://raw.github.com/balintk/vimrc/master/install.sh | sh"

0 comments on commit e9cb6c7

Please sign in to comment.