diff options
author | Robby Russell <robby@planetargon.com> | 2012-12-01 11:58:21 -0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2012-12-01 11:58:21 -0800 |
commit | 9a88e768231552b1e288012a7e1fb2351ca6f145 (patch) | |
tree | b3de029d97314c5fc142bdbaf299fda2815640f5 /tools | |
parent | f9c1a7242f8ea56110f5f665c01cedacae5211ce (diff) | |
parent | b0cf0674ef732b4102bf793543ceed3d23897ab6 (diff) | |
download | zsh-9a88e768231552b1e288012a7e1fb2351ca6f145.tar.gz zsh-9a88e768231552b1e288012a7e1fb2351ca6f145.tar.bz2 zsh-9a88e768231552b1e288012a7e1fb2351ca6f145.zip |
Merge pull request #1370 from ericmathison/syntax-fix
Fix color syntax
Diffstat (limited to 'tools')
-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 b080be3a1..6f58db939 100755 --- a/tools/install.sh +++ b/tools/install.sh @@ -13,7 +13,7 @@ hash git >/dev/null && /usr/bin/env git clone https://github.com/robbyrussell/oh echo "\033[0;34mLooking for an existing zsh config...\033[0m" if [ -f ~/.zshrc ] || [ -h ~/.zshrc ] then - echo "\033[0;33mFound ~/.zshrc.\033[0m \033[0;32]Backing up to ~/.zshrc.pre-oh-my-zsh\033[0m"; + echo "\033[0;33mFound ~/.zshrc.\033[0m \033[0;32mBacking up to ~/.zshrc.pre-oh-my-zsh\033[0m"; cp ~/.zshrc ~/.zshrc.pre-oh-my-zsh; rm ~/.zshrc; fi |