pyenv/bin/rbenv-rehash
2011-08-01 15:50:26 -05:00

10 lines
133 B
Bash
Executable file

#!/bin/bash
set -e
cd "$HOME/.rbenv/shims"
rm *
for file in ../versions/*/bin/*; do
ln -fs ../bin/rbenv-shim "${file##*/}"
done