Reload .bashrc/.zshrc after installation

pull/17/head
Junegunn Choi 11 years ago
parent a9fd496691
commit 179b00ed6c

@ -68,5 +68,15 @@ 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."

Loading…
Cancel
Save