diff options
author | Robby Russell <robby@planetargon.com> | 2011-04-26 09:47:56 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2011-04-26 09:47:56 -0700 |
commit | ffbc0136278fa7e6d77d4671368576bff13ba590 (patch) | |
tree | b095adca3dfa828ebd28082e13c0ceed20a59b91 /tools/install.sh | |
parent | 5f0e585e5b01043e660611bc5d7d0fd8585af492 (diff) | |
parent | 1354eb124893df9c8f60f668550efcafb94eb05f (diff) | |
download | zsh-ffbc0136278fa7e6d77d4671368576bff13ba590.tar.gz zsh-ffbc0136278fa7e6d77d4671368576bff13ba590.tar.bz2 zsh-ffbc0136278fa7e6d77d4671368576bff13ba590.zip |
Merged pull request #287 from arthurkalm/install-tweeks.
Install tweeks
Diffstat (limited to 'tools/install.sh')
-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 ' ____ / /_ ____ ___ __ __ ____ _____/ /_ ' |