mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
Merge pull request #35 from sj26/master
--help / -h should work as expected
This commit is contained in:
commit
8dd666992e
1 changed files with 6 additions and 4 deletions
|
@ -19,10 +19,11 @@ libexec_path="$(abs_dirname "$0")"
|
||||||
export PATH="${libexec_path}:${PATH}"
|
export PATH="${libexec_path}:${PATH}"
|
||||||
|
|
||||||
command="$1"
|
command="$1"
|
||||||
if [ -z "$command" ]; then
|
case $command in
|
||||||
|
"" | "-h" | "--help")
|
||||||
echo -e "rbenv 0.1.0\n$(rbenv-help)" >&2
|
echo -e "rbenv 0.1.0\n$(rbenv-help)" >&2
|
||||||
|
;;
|
||||||
else
|
*)
|
||||||
command_path="$(command -v "rbenv-$command" || true)"
|
command_path="$(command -v "rbenv-$command" || true)"
|
||||||
if [ -z "$command_path" ]; then
|
if [ -z "$command_path" ]; then
|
||||||
echo "rbenv: no such command \`$command'" >&2
|
echo "rbenv: no such command \`$command'" >&2
|
||||||
|
@ -31,4 +32,5 @@ else
|
||||||
|
|
||||||
shift 1
|
shift 1
|
||||||
exec "$command_path" "$@"
|
exec "$command_path" "$@"
|
||||||
fi
|
;;
|
||||||
|
esac
|
||||||
|
|
Loading…
Reference in a new issue