pyenv/libexec/rbenv-rehash

29 lines
491 B
Text
Raw Normal View History

2011-08-02 19:11:41 -04:00
#!/usr/bin/env bash -e
2011-08-01 16:50:26 -04:00
make_shims() {
local glob="$@"
2011-08-01 16:50:26 -04:00
for file in $glob; do
local shim="${file##*/}"
cat > "$shim" <<SH
#!/bin/sh
2011-08-02 20:37:18 -04:00
exec rbenv exec $shim "\$@"
SH
chmod +x "$shim"
done
}
mkdir -p "${HOME}/.rbenv/shims"
cd "${HOME}/.rbenv/shims"
rm -f *
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
2011-08-01 16:50:26 -04:00
done