1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-17 07:43:46 -05:00

RBENV_HOME -> RBENV_ROOT

This commit is contained in:
Sam Stephenson
2011-09-11 11:58:57 -05:00
parent c6ce8fafd8
commit 7ac964353f
9 changed files with 14 additions and 14 deletions

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -e
SHIM_PATH="${RBENV_HOME}/shims"
SHIM_PATH="${RBENV_ROOT}/shims"
PROTOTYPE_SHIM_PATH="${SHIM_PATH}/.rbenv-shim"
# Create the shims directory if it doesn't already exist.
@@ -63,7 +63,7 @@ shopt -s nullglob
make_shims ../versions/*/bin/*
# Find and run any plugins that might want to make shims too.
RBENV_REHASH_PLUGINS=(/etc/rbenv.d/rehash/*.bash ${RBENV_HOME}/rbenv.d/rehash/*.bash)
RBENV_REHASH_PLUGINS=(/etc/rbenv.d/rehash/*.bash ${RBENV_ROOT}/rbenv.d/rehash/*.bash)
shopt -u nullglob
for script in ${RBENV_REHASH_PLUGINS[@]}; do