Browse code

Updating install process to copy your current environments PATH and adding it to the bottom of ~/.zshrc.

Robby Russell authored on 07/09/2009 at 16:11:34
Showing 2 changed files
... ...
@@ -5,7 +5,6 @@ export ZSH=$HOME/.oh-my-zsh
5 5
 # Look in ~/.oh-my-zsh/themes/
6 6
 export ZSH_THEME="robbyrussell"
7 7
 
8
-# Customize to your needs...
9
-#export PATH=~/bin:/opt/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/local/sbin:/opt/local/lib/postgresql83/bin
10
-
11 8
 source $ZSH/oh-my-zsh.sh
9
+
10
+# Customize to your needs...
... ...
@@ -18,6 +18,9 @@ fi
18 18
 echo "Using the Oh My Zsh template file and adding it to ~/.zshrc"
19 19
 cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
20 20
 
21
+echo "Copying your current PATH and adding it to the end of ~/.zshrc for you."
22
+echo "export PATH=$PATH" >> ~/.zshrc
23
+
21 24
 echo "Time to change your default shell to zsh!"
22 25
 chsh -s /bin/zsh
23 26