From 9e58a8f9e95b9fd680ba38584dd527c5bf215624 Mon Sep 17 00:00:00 2001 From: Nathan Stilwell Date: Wed, 26 Aug 2015 17:03:41 -0400 Subject: [PATCH] changing install to install the fork --- tools/install.sh | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/tools/install.sh b/tools/install.sh index a2bd5665a..05b2ee845 100755 --- a/tools/install.sh +++ b/tools/install.sh @@ -5,7 +5,7 @@ then fi echo "\033[0;34mCloning Oh My Zsh...\033[0m" -hash git >/dev/null && /usr/bin/env git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh || { +hash git >/dev/null && /usr/bin/env git clone git@github.com:nathanstilwell/oh-my-zsh.git ~/.oh-my-zsh || { echo "git not installed" exit } @@ -17,12 +17,6 @@ then mv ~/.zshrc ~/.zshrc.pre-oh-my-zsh; 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;34mTime to change your default shell to zsh!\033[0m" chsh -s `which zsh`