Added copying of current MANPATH to end of ~/.zshrc in installer.

This commit is contained in:
rtaycher 2010-10-08 06:59:06 -07:00
commit acca171163

3
tools/install.sh Executable file → Normal file
View file

@ -21,6 +21,9 @@ cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
echo "Copying your current PATH and adding it to the end of ~/.zshrc for you." echo "Copying your current PATH and adding it to the end of ~/.zshrc for you."
echo "export PATH=$PATH" >> ~/.zshrc echo "export PATH=$PATH" >> ~/.zshrc
echo "Copying your current MANPATH and adding it to the end of ~/.zshrc for you."
echo "export MANPATH=$MANPATH" >> ~/.zshrc
echo "Time to change your default shell to zsh!" echo "Time to change your default shell to zsh!"
chsh -s "/usr/bin/env zsh" chsh -s "/usr/bin/env zsh"