From e93ae00ca1420de631055bd5b7b05565fb95b6db Mon Sep 17 00:00:00 2001 From: "Yamashita, Yuu" Date: Wed, 20 Jul 2016 00:25:09 +0000 Subject: [PATCH] Write help message to stdout just like other commands (#650, #651) --- libexec/pyenv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/pyenv b/libexec/pyenv index ad42ad65..79a20149 100755 --- a/libexec/pyenv +++ b/libexec/pyenv @@ -123,7 +123,7 @@ case "$command" in shift 1 if [ "$1" = --help ]; then if [[ "$command" == "sh-"* ]]; then - exec pyenv-help "$command" 1>&2 + echo "pyenv help \"$command\"" else exec pyenv-help "$command" fi