pyenv/bin/rbenv-rehash

11 lines
135 B
Plaintext
Raw Normal View History

2011-08-01 15:50:26 -05:00
#!/bin/bash
set -e
2011-08-01 16:43:19 -05:00
cd "${HOME}/.rbenv/shims"
2011-08-01 15:50:26 -05:00
rm *
for file in ../versions/*/bin/*; do
ln -fs ../bin/rbenv-shim "${file##*/}"
done