Skip to content

Commit

Permalink
Make uninstall target consistent with uninstall.sh (liuchengxu#243)
Browse files Browse the repository at this point in the history
  • Loading branch information
gokhanettin authored and liuchengxu committed Dec 4, 2017
1 parent 6a45dcb commit 6dd173d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@ update:

uninstall:
@echo "\033[1;34m==>\033[0m Trying to uninstall space-vim"; \
rm -f ~/.vimrc && echo " - Removed ~/.vimrc"; \
rm -rf ~/.space-vim && echo " - Removed ~/.space-vim"; \
rm -f $(VIMRC) && echo " - Removed $(VIMRC)"; \
rm -f $(NVIMRC) && echo " - Removed $(NVIMRC)"; \
rm -f $(DOT_SPACEVIM) && echo " - Removed $(DOT_SPACEVIM)"; \
rm -rf ~/.$(APP) && echo " - Removed ~/.$(APP)"; \
echo "\033[32m[✔]\033[0m Successfully uninstalled $(APP)"

.PHONY: help vim neovim update uninstall

0 comments on commit 6dd173d

Please sign in to comment.