mirror of
https://github.com/rbenv/rbenv.git
synced 2025-01-04 08:05:16 +01:00
10 lines
135 B
Bash
Executable file
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
|