pyenv/libexec/rbenv-which

89 lines
1.7 KiB
Text
Raw Normal View History

#!/usr/bin/env bash
#
# Summary: Display the full path to an executable
#
# Usage: rbenv which <command>
#
2013-01-03 11:06:12 -05:00
# Displays the full path to the executable that rbenv will invoke when
# you run the given command.
set -e
[ -n "$RBENV_DEBUG" ] && set -x
2011-08-01 16:50:26 -04:00
2011-09-13 14:02:55 -04:00
# Provide rbenv completions
if [ "$1" = "--complete" ]; then
exec rbenv shims --short
fi
2011-08-03 09:39:56 -04:00
expand_path() {
if [ ! -d "$1" ]; then
return 1
fi
2011-08-03 09:39:56 -04:00
local cwd="$(pwd)"
cd "$1"
pwd
cd "$cwd"
}
remove_from_path() {
local path_to_remove="$(expand_path "$1")"
local result=""
if [ -z "$path_to_remove" ]; then
echo "${PATH}"
return
fi
local paths
IFS=: paths=($PATH)
for path in "${paths[@]}"; do
2011-08-03 09:39:56 -04:00
path="$(expand_path "$path" || true)"
if [ -n "$path" ] && [ "$path" != "$path_to_remove" ]; then
2011-08-03 09:39:56 -04:00
result="${result}${path}:"
fi
done
echo "${result%:}"
}
RBENV_VERSION="$(rbenv-version-name)"
2011-08-01 16:50:26 -04:00
RBENV_COMMAND="$1"
2011-08-03 09:39:56 -04:00
if [ -z "$RBENV_COMMAND" ]; then
2012-12-29 13:12:47 -05:00
rbenv-help --usage which >&2
exit 1
fi
2011-08-03 09:39:56 -04:00
if [ "$RBENV_VERSION" = "system" ]; then
2011-09-11 12:58:57 -04:00
PATH="$(remove_from_path "${RBENV_ROOT}/shims")"
RBENV_COMMAND_PATH="$(command -v "$RBENV_COMMAND" || true)"
2011-08-03 09:39:56 -04:00
else
2011-09-11 12:58:57 -04:00
RBENV_COMMAND_PATH="${RBENV_ROOT}/versions/${RBENV_VERSION}/bin/${RBENV_COMMAND}"
2011-08-03 09:39:56 -04:00
fi
2011-08-01 16:50:26 -04:00
2013-04-15 12:10:56 -04:00
OLDIFS="$IFS"
IFS=$'\n' scripts=(`rbenv-hooks which`)
2013-04-15 12:10:56 -04:00
IFS="$OLDIFS"
for script in "${scripts[@]}"; do
source "$script"
done
2011-08-01 16:50:26 -04:00
if [ -x "$RBENV_COMMAND_PATH" ]; then
echo "$RBENV_COMMAND_PATH"
else
echo "rbenv: $RBENV_COMMAND: command not found" >&2
versions="$(rbenv-whence "$RBENV_COMMAND" || true)"
if [ -n "$versions" ]; then
{ echo
echo "The \`$1' command exists in these Ruby versions:"
echo "$versions" | sed 's/^/ /g'
echo
} >&2
fi
2011-08-01 16:50:26 -04:00
exit 127
fi