Add space after yes/no prompt (#2040)

This commit is contained in:
Seonghyeon Cho 2021-09-08 05:35:53 +09:00 committed by GitHub
parent 70d7749584
commit a65af6570d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ;;