From 7097f8204e26c63a6ae9699255caa75e7c3ef084 Mon Sep 17 00:00:00 2001 From: adrian-the-git Date: Wed, 22 Jan 2020 15:12:29 -0800 Subject: [PATCH] Remove duplicate help message (#1525) The pyenv help listing offered the "commands" command twice. --- libexec/pyenv-help | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/pyenv-help b/libexec/pyenv-help index ef0ed8ec..b4e385a3 100755 --- a/libexec/pyenv-help +++ b/libexec/pyenv-help @@ -153,7 +153,7 @@ if [ -z "$1" ] || [ "$1" == "pyenv" ]; then [ -z "$usage" ] || exit echo echo "Some useful pyenv commands are:" - print_summaries commands $(exec pyenv-commands | sort -u) + print_summaries $(exec pyenv-commands | sort -u) echo echo "See \`pyenv help ' for information on a specific command." echo "For full documentation, see: https://github.com/pyenv/pyenv#readme"