Fixes missing double quote in README #1582 (#1583)

Bash example had a missing quote for setting PYENV_ROOT path
This commit is contained in:
Swaroop Hegde 2020-04-10 22:30:13 +05:30 committed by GitHub
parent 0f2d659732
commit 3e0f5e798c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -194,7 +194,7 @@ easy to fork and contribute any changes back upstream.
- For **bash**:
~~~ bash
$ echo 'export PYENV_ROOT="$HOME/.pyenv' >> ~/.bash_profile
$ echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bash_profile
$ echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bash_profile
~~~