1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-15 23:03:53 -05:00
Files
pyenv/bin/rbenv-rehash
Sam Stephenson 99035a49a9 Initial commit
2011-08-01 15:50:26 -05:00

11 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