diff options
author | Robby Russell <robby@planetargon.com> | 2009-09-07 09:11:34 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2009-09-07 09:11:34 -0700 |
commit | b67961d812c7f403aea223f40410bfc34f706b05 (patch) | |
tree | b01e6ffbafd992245b95ae19fb3e27adbf77f318 /tools | |
parent | 44465ef4ce41f0928f6c59573da476a559a809a4 (diff) | |
download | zsh-b67961d812c7f403aea223f40410bfc34f706b05.tar.gz zsh-b67961d812c7f403aea223f40410bfc34f706b05.tar.bz2 zsh-b67961d812c7f403aea223f40410bfc34f706b05.zip |
Updating install process to copy your current environments PATH and adding it to the bottom of ~/.zshrc.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/install.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/install.sh b/tools/install.sh index 05b3a52cd..5c9f5592a 100644 --- a/tools/install.sh +++ b/tools/install.sh @@ -18,6 +18,9 @@ fi echo "Using the Oh My Zsh template file and adding it to ~/.zshrc" 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 "export PATH=$PATH" >> ~/.zshrc + echo "Time to change your default shell to zsh!" chsh -s /bin/zsh |