diff options
author | Diego Rabatone Oliveira <diraol@diraol.eng.br> | 2015-05-09 17:38:34 -0300 |
---|---|---|
committer | ncanceill <nicolas.canceill@ens-cachan.org> | 2015-06-11 21:10:36 +0200 |
commit | c838b9a112e1569bcc5af069d8283057f7d4208a (patch) | |
tree | dcb8f2d70dda5ff990ac64186a0f1dfc1472a9f6 /README.markdown | |
parent | fb5b83d10d5b1640fbd2035d5a7419cb5b25c32a (diff) | |
download | zsh-c838b9a112e1569bcc5af069d8283057f7d4208a.tar.gz zsh-c838b9a112e1569bcc5af069d8283057f7d4208a.tar.bz2 zsh-c838b9a112e1569bcc5af069d8283057f7d4208a.zip |
Update README.markdown
Updating the install instructions as proposed in: https://github.com/robbyrussell/oh-my-zsh/issues/3516#issuecomment-76506726
Diffstat (limited to 'README.markdown')
-rw-r--r-- | README.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/README.markdown b/README.markdown index 31cbc810b..88ef356fd 100644 --- a/README.markdown +++ b/README.markdown @@ -25,11 +25,11 @@ Oh My Zsh is installed by running one of the following commands in your terminal #### via curl -`curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh` +`sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"` #### via wget -`wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O - | sh` +`sh -c "$(wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"` ## Using Oh My Zsh |