1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-10 04:23:47 -05:00

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

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