mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-14 01:40:09 +00:00
Escape spaces in folder name so script won't fail
If the current directory has spaces, the script fails to change paths and fails.
This commit is contained in:
parent
0198a12953
commit
32a42f27b6
1 changed files with 2 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
||||||
current_path=`pwd`
|
current_path=`pwd`
|
||||||
|
current_path=${current_path/ /\\ }
|
||||||
printf '\033[0;34m%s\033[0m\n' "Upgrading Oh My Zsh"
|
printf '\033[0;34m%s\033[0m\n' "Upgrading Oh My Zsh"
|
||||||
cd $ZSH
|
cd $ZSH
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue