diff options
author | Robby Russell <robby@planetargon.com> | 2009-08-30 18:51:41 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2009-08-30 18:51:41 -0700 |
commit | 13ca4fab1a944799d8a27e28daea6d19fe9dd813 (patch) | |
tree | ef50b142cf78c59694dd129aba1c5a7df2b51952 | |
parent | 684eae38af9b00f2c743c7d198c387d5a817ee69 (diff) | |
download | zsh-13ca4fab1a944799d8a27e28daea6d19fe9dd813.tar.gz zsh-13ca4fab1a944799d8a27e28daea6d19fe9dd813.tar.bz2 zsh-13ca4fab1a944799d8a27e28daea6d19fe9dd813.zip |
Changing order of loading zsh at end of install
-rw-r--r-- | tools/install.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/install.sh b/tools/install.sh index 8873260cf..78a39cd96 100644 --- a/tools/install.sh +++ b/tools/install.sh @@ -22,4 +22,6 @@ echo "Time to change your default shell to zsh!" chsh -s /bin/zsh echo "Hooray! Oh My Zsh has been installed." -source ~/.zshrc && /bin/zsh +/bin/zsh +source ~/.zshrc + |