mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
rbenv 0.1.1
This commit is contained in:
parent
e43a2039a5
commit
bd1e56ff37
1 changed files with 4 additions and 4 deletions
|
@ -19,11 +19,11 @@ libexec_path="$(abs_dirname "$0")"
|
||||||
export PATH="${libexec_path}:${PATH}"
|
export PATH="${libexec_path}:${PATH}"
|
||||||
|
|
||||||
command="$1"
|
command="$1"
|
||||||
case $command in
|
case "$command" in
|
||||||
"" | "-h" | "--help")
|
"" | "-h" | "--help" )
|
||||||
echo -e "rbenv 0.1.0\n$(rbenv-help)" >&2
|
echo -e "rbenv 0.1.1\n$(rbenv-help)" >&2
|
||||||
;;
|
;;
|
||||||
*)
|
* )
|
||||||
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
|
||||||
|
|
Loading…
Reference in a new issue