Skip to content
Snippets Groups Projects
Commit 179b00ed authored by Junegunn Choi's avatar Junegunn Choi
Browse files

Reload .bashrc/.zshrc after installation

parent a9fd4966
No related branches found
No related tags found
No related merge requests found
......@@ -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."
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment