summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Cornellà <marc.cornella@live.com>2015-12-05 18:49:26 +0100
committerMarc Cornellà <marc.cornella@live.com>2015-12-05 18:49:26 +0100
commitee343814b799cc44b84d8999d5cb444159815bac (patch)
tree93c78db5481e41f7d3b2a642fe7e18cab58bfe40
parent3841115f541415f64c461d47285a9bf677b97e3f (diff)
downloadzsh-ee343814b799cc44b84d8999d5cb444159815bac.tar.gz
zsh-ee343814b799cc44b84d8999d5cb444159815bac.tar.bz2
zsh-ee343814b799cc44b84d8999d5cb444159815bac.zip
Use $HOME instead of tilde inside quotes
The tilde character is not expanded when inside quotes. See https://github.com/robbyrussell/oh-my-zsh/issues/4668#issuecomment-162213379
-rw-r--r--README.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.markdown b/README.markdown
index 6007d6500..9d7210f77 100644
--- a/README.markdown
+++ b/README.markdown
@@ -104,7 +104,7 @@ The default location is `~/.oh-my-zsh` (hidden in your home directory)
If you'd like to change the install directory with the `ZSH` environment variable, either by running `export ZSH=/your/path` before installing, or by setting it before the end of the install pipeline like this:
```shell
-export ZSH="~/.dotfiles/oh-my-zsh"; sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
+export ZSH="$HOME/.dotfiles/oh-my-zsh"; sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
```
#### Manual Installation