10 lines
165 B
Bash
Executable File
10 lines
165 B
Bash
Executable File
#!/bin/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
|