pyenv/bin/rbenv-rehash
Sam Stephenson 0c66f62c17 Style
2011-08-01 16:43:19 -05:00

10 lines
135 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