From d201daeb3366cae98cca88654b4c52018175ded5 Mon Sep 17 00:00:00 2001 From: David Poznik Date: Fri, 4 Oct 2024 16:17:45 -0700 Subject: [PATCH] Make "y/N" prompt consistent with others (#3080) --- 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 f6b6fcdf..f95cd365 100755 --- a/plugins/python-build/bin/pyenv-uninstall +++ b/plugins/python-build/bin/pyenv-uninstall @@ -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 ;;