From 64541cb5f89a1bdcee58dbf1f721f8a9987e5d49 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Wed, 20 Nov 2013 02:10:19 +0900 Subject: [PATCH] Fix install script (source ~/.xxxrc has no effect) --- install | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/install b/install index 6853ca9..92a488d 100755 --- a/install +++ b/install @@ -68,15 +68,9 @@ for shell in bash zsh; do echo done -case "$SHELL" in - *bash) - echo "Reloading ~/.bashrc ..." - source ~/.bashrc - ;; - *zsh) - echo "Reloading ~/.zshrc ..." - source ~/.zshrc - ;; -esac -echo "Finished. Remove the added lines to uninstall fzf." +echo "Finished. Reload your .bashrc or .zshrc to take effect." +echo " source ~/.bashrc # bash" +echo " source ~/.zshrc # zsh" +echo +echo "To uninstall fzf, simply remove the added lines."