From 6c65d472b68d4943905ba898ec49a26319f6bdb2 Mon Sep 17 00:00:00 2001 From: Olivier Scherler Date: Fri, 21 Jun 2013 17:24:28 +0300 Subject: [PATCH] Refrain from hard-coding the current PATH to the end of ~/.zshrc. --- tools/install.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/install.sh b/tools/install.sh index a2bd5665a..3b62dd681 100755 --- a/tools/install.sh +++ b/tools/install.sh @@ -20,8 +20,7 @@ fi echo "\033[0;34mUsing the Oh My Zsh template file and adding it to ~/.zshrc\033[0m" cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc -echo "\033[0;34mCopying your current PATH and adding it to the end of ~/.zshrc for you.\033[0m" -echo "export PATH=\$PATH:$PATH" >> ~/.zshrc +echo "\033[0;34mNon-retardedly refraining from hard-coding your current PATH to the end of ~/.zshrc.\033[0m" echo "\033[0;34mTime to change your default shell to zsh!\033[0m" chsh -s `which zsh`