diff options
author | johnmaxwelliv <notifyjohn@gmail.com> | 2009-12-12 21:23:36 -0700 |
---|---|---|
committer | johnmaxwelliv <notifyjohn@gmail.com> | 2009-12-12 21:23:36 -0700 |
commit | 59116a25f1b071a691a7df2abf2f41d0ed2a2798 (patch) | |
tree | 84df066176c8da3fd59b13731a86d90f4f1e5c9d /oh-my-zsh.sh | |
parent | 4419c5c3475c00b97671c7041c0fd7d7eb4b205e (diff) | |
download | zsh-59116a25f1b071a691a7df2abf2f41d0ed2a2798.tar.gz zsh-59116a25f1b071a691a7df2abf2f41d0ed2a2798.tar.bz2 zsh-59116a25f1b071a691a7df2abf2f41d0ed2a2798.zip |
Instead of using the user's standard shell, this script should be run using zsh, since that was the shell it was written for. On my machine changes to my default shell only take effect when I log out and then long in again. Plus, it's nice for people to be able to try oh-my-zsh out even if zsh isn't their default shell right? :-)
Diffstat (limited to 'oh-my-zsh.sh')
-rw-r--r-- | oh-my-zsh.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oh-my-zsh.sh b/oh-my-zsh.sh index eadf02d00..d31e059f0 100644 --- a/oh-my-zsh.sh +++ b/oh-my-zsh.sh @@ -15,5 +15,5 @@ if [ "$DISABLE_AUTO_UPDATE" = "true" ] then return else - /bin/sh $ZSH/tools/check_for_upgrade.sh + /bin/zsh $ZSH/tools/check_for_upgrade.sh fi |