Make "y/N" prompt consistent with others (#3080)

This commit is contained in:
David Poznik 2024-10-04 16:17:45 -07:00 committed by GitHub
parent 468dc81107
commit d201daeb33
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -75,7 +75,7 @@ uninstall-python() {
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 ;;