1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-16 07:13:53 -05:00

Add a workaround for system executables in /bin

This commit is contained in:
Yamashita, Yuu
2016-08-01 00:32:50 +00:00
parent 2485257424
commit 6030ea51e4

View File

@@ -24,7 +24,8 @@ fi
if [ "$RBENV_VERSION" = "system" ]; then if [ "$RBENV_VERSION" = "system" ]; then
if RUBY_PATH="$(rbenv-which ruby 2>/dev/null)"; then if RUBY_PATH="$(rbenv-which ruby 2>/dev/null)"; then
RUBY_PATH="${RUBY_PATH%/*}" RUBY_PATH="${RUBY_PATH%/*}"
echo "${RUBY_PATH%/bin}" RBENV_PREFIX_PATH="${RUBY_PATH%/bin}"
echo "${RBENV_PREFIX_PATH:-/}"
exit exit
else else
echo "rbenv: system version not found in PATH" >&2 echo "rbenv: system version not found in PATH" >&2