mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 08:50:08 +00:00
Merge pull request #1651 from deepusudhakar/master
Escape $ZSH path in upgrade_oh_my_zsh
This commit is contained in:
commit
d8e700c1b6
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue