diff options
author | Robby Russell <robby@planetargon.com> | 2014-03-08 08:39:34 -0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2014-03-08 08:39:34 -0800 |
commit | 6a2e65f4c858460f2575d0a5f44d9e26af98960c (patch) | |
tree | f82c64e45391d4edee4976f33fdb923f24f5f99e | |
parent | 59db638d991113ed8f55ff88c4ffbe22314b4fe7 (diff) | |
parent | ebeae4abe9b3ef2e626eb545e991bb5696c57de0 (diff) | |
download | zsh-6a2e65f4c858460f2575d0a5f44d9e26af98960c.tar.gz zsh-6a2e65f4c858460f2575d0a5f44d9e26af98960c.tar.bz2 zsh-6a2e65f4c858460f2575d0a5f44d9e26af98960c.zip |
Merge pull request #1402 from sergeylukin/master
Fix install.sh compatibility with /bin/sh
-rwxr-xr-x | tools/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/install.sh b/tools/install.sh index 314affe6c..b24bb4ad3 100755 --- a/tools/install.sh +++ b/tools/install.sh @@ -43,4 +43,4 @@ echo "\033[0;32m"' /____/ '"\033[0m echo "\n\n \033[0;32m....is now installed.\033[0m" echo "\n\n \033[0;32mPlease look over the ~/.zshrc file to select plugins, themes, and options.\033[0m" /usr/bin/env zsh -source ~/.zshrc +. ~/.zshrc |