diff options
author | Pat Regan <thehead@patshead.com> | 2011-04-27 04:56:44 -0400 |
---|---|---|
committer | Pat Regan <thehead@patshead.com> | 2011-04-27 04:56:44 -0400 |
commit | dc76c5694dda120fcac02b2d75ef0a149de94a2f (patch) | |
tree | 0a4043b579fc4f2306df52180495940792492a32 /tools | |
parent | 886af72125a108c2f928474c7f817dd2c164795e (diff) | |
parent | 70d0beae22e7d97d4380af32dae1618f45e3dd4b (diff) | |
download | zsh-dc76c5694dda120fcac02b2d75ef0a149de94a2f.tar.gz zsh-dc76c5694dda120fcac02b2d75ef0a149de94a2f.tar.bz2 zsh-dc76c5694dda120fcac02b2d75ef0a149de94a2f.zip |
Merge branch 'master' of git://github.com/robbyrussell/oh-my-zsh
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/install.sh b/tools/install.sh index 6e3872bb9..8ed1403af 100755 --- a/tools/install.sh +++ b/tools/install.sh @@ -5,7 +5,7 @@ then fi echo "Cloning Oh My Zsh..." -/usr/bin/env git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh +/usr/bin/env git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh echo "Looking for an existing zsh config..." if [ -f ~/.zshrc ] || [ -h ~/.zshrc ] @@ -22,7 +22,7 @@ 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 "/usr/bin/env zsh" +chsh -s `which zsh` echo ' __ __ ' echo ' ____ / /_ ____ ___ __ __ ____ _____/ /_ ' |