1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-15 06:43:53 -05:00

look for plugins to extend rehash and which

This commit is contained in:
Jamis Buck
2011-08-03 11:17:28 -06:00
parent a9837f3a06
commit b6ebc2f08b
2 changed files with 29 additions and 7 deletions

View File

@@ -1,14 +1,28 @@
#!/usr/bin/env bash -e
make_shims() {
local glob="$@"
for file in $glob; do
local shim="${file##*/}"
cat > "$shim" <<SH
#!/bin/sh
exec rbenv exec $shim "\$@"
SH
chmod +x "$shim"
done
}
mkdir -p "${HOME}/.rbenv/shims"
cd "${HOME}/.rbenv/shims"
rm -f *
for file in ../versions/*/bin/*; do
shim="${file##*/}"
cat > "$shim" <<SH
#!/bin/sh
exec rbenv exec $shim "\$@"
SH
chmod +x "$shim"
make_shims ../versions/*/bin/*
shopt -s nullglob
RBENV_REHASH_PLUGINS=(/etc/rbenv.d/rehash/*.bash ${HOME}/.rbenv/rbenv.d/rehash/*.bash)
shopt -u nullglob
for script in $RBENV_REHASH_PLUGINS; do
source $script
done