mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
9 lines
173 B
Bash
Executable file
9 lines
173 B
Bash
Executable file
#!/usr/bin/env bash -e
|
|
|
|
mkdir -p "${HOME}/.rbenv/shims"
|
|
cd "${HOME}/.rbenv/shims"
|
|
rm -f *
|
|
|
|
for file in ../versions/*/bin/*; do
|
|
ln -fs ../bin/rbenv-shim "${file##*/}"
|
|
done
|