From a65af6570d1ccf290dd23592ee836b4841843799 Mon Sep 17 00:00:00 2001 From: Seonghyeon Cho Date: Wed, 8 Sep 2021 05:35:53 +0900 Subject: [PATCH] Add space after yes/no prompt (#2040) --- plugins/python-build/bin/pyenv-uninstall | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/python-build/bin/pyenv-uninstall b/plugins/python-build/bin/pyenv-uninstall index 50a90bc9..9f892097 100755 --- a/plugins/python-build/bin/pyenv-uninstall +++ b/plugins/python-build/bin/pyenv-uninstall @@ -69,7 +69,7 @@ if [ -z "$FORCE" ]; then exit 1 fi - read -p "pyenv: remove $PREFIX? [y|N]" + read -p "pyenv: remove $PREFIX? [y|N] " case "$REPLY" in y | Y | yes | YES ) ;; * ) exit 1 ;;