diff options
author | Toon Claes <toon@tonotdo.com> | 2009-10-16 23:03:50 +0200 |
---|---|---|
committer | Toon Claes <toon@tonotdo.com> | 2009-10-16 23:03:50 +0200 |
commit | 886d97f41e72b8662232a2c6b196fb60508e4f67 (patch) | |
tree | 247817834a0483854673f1b5d76e9d6d1bb2b7db | |
parent | a75d0ba8d7b256fa2c21b0c8f04cbcab6b9289f2 (diff) | |
download | zsh-886d97f41e72b8662232a2c6b196fb60508e4f67.tar.gz zsh-886d97f41e72b8662232a2c6b196fb60508e4f67.tar.bz2 zsh-886d97f41e72b8662232a2c6b196fb60508e4f67.zip |
Removed useless else
-rwxr-xr-x[-rw-r--r--] | tools/install.sh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tools/install.sh b/tools/install.sh index 5c9f5592a..5a7c00950 100644..100755 --- a/tools/install.sh +++ b/tools/install.sh @@ -2,11 +2,11 @@ if [ -d ~/.oh-my-zsh ] then echo "You already have Oh My Zsh installed. You'll need to remove ~/.oh-my-zsh if you want to install" exit -else - echo "Cloning Oh My Zsh..." - /usr/bin/env git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh fi +echo "Cloning Oh My Zsh..." +/usr/bin/env git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh + echo "Looking for an existing zsh config..." if [ -f ~/.zshrc ] || [ -h ~/.zshrc ] then @@ -27,4 +27,3 @@ chsh -s /bin/zsh echo "Hooray! Oh My Zsh has been installed." /bin/zsh source ~/.zshrc - |