From 3e0f5e798ca16cd9389c4c8805038ac2c0d45cae Mon Sep 17 00:00:00 2001 From: Swaroop Hegde Date: Fri, 10 Apr 2020 22:30:13 +0530 Subject: [PATCH] Fixes missing double quote in README #1582 (#1583) Bash example had a missing quote for setting PYENV_ROOT path --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 73463a1c..d883b21a 100644 --- a/README.md +++ b/README.md @@ -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 ~~~