diff options
author | Robby Russell <robby@planetargon.com> | 2013-04-12 05:56:50 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2013-04-12 05:56:50 -0700 |
commit | d8e700c1b6536463c1cffb93b5c3a0a111cb350c (patch) | |
tree | 647f7763018ce2207cb1e41620b84a40dc17e528 /tools | |
parent | f2a927f9b2630a7f813812ee2ed98f395fcd7022 (diff) | |
parent | 9991401aaa88c294c37dc8aaaf955d7d08b04508 (diff) | |
download | zsh-d8e700c1b6536463c1cffb93b5c3a0a111cb350c.tar.gz zsh-d8e700c1b6536463c1cffb93b5c3a0a111cb350c.tar.bz2 zsh-d8e700c1b6536463c1cffb93b5c3a0a111cb350c.zip |
Merge pull request #1651 from deepusudhakar/master
Escape $ZSH path in upgrade_oh_my_zsh
Diffstat (limited to 'tools')
-rw-r--r-- | tools/upgrade.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/upgrade.sh b/tools/upgrade.sh index cd689ba1f..0aeebdebf 100644 --- a/tools/upgrade.sh +++ b/tools/upgrade.sh @@ -1,7 +1,7 @@ current_path=`pwd` current_path=${current_path/ /\\ } printf '\033[0;34m%s\033[0m\n' "Upgrading Oh My Zsh" -cd $ZSH +cd "$ZSH" if git pull origin master then |