Ver código fonte

Show usage for `rbenv which` without an argument

pull/360/head^2
Sam Stephenson 15 anos atrás
pai
commit
3644840d4b
1 arquivos alterados com 5 adições e 0 exclusões
  1. +5
    -0
      libexec/rbenv-which

+ 5
- 0
libexec/rbenv-which Ver arquivo

@ -35,6 +35,11 @@ remove_from_path() {
RBENV_VERSION="$(rbenv-version-name)"
RBENV_COMMAND="$1"
if [ -z "$RBENV_COMMAND" ]; then
echo "usage: rbenv which COMMAND" >&2
exit 1
fi
if [ "$RBENV_VERSION" = "system" ]; then
PATH="$(remove_from_path "${RBENV_ROOT}/shims")"
RBENV_COMMAND_PATH="$(command -v "$RBENV_COMMAND")"

Carregando…
Cancelar
Salvar