mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
11 lines
133 B
Text
11 lines
133 B
Text
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
cd "$HOME/.rbenv/shims"
|
||
|
rm *
|
||
|
|
||
|
for file in ../versions/*/bin/*; do
|
||
|
ln -fs ../bin/rbenv-shim "${file##*/}"
|
||
|
done
|