mirror of
https://github.com/rbenv/rbenv.git
synced 2025-01-19 20:51:38 +01:00
11 lines
167 B
Bash
Executable file
11 lines
167 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
mkdir -p "${HOME}/.rbenv/shims"
|
|
cd "${HOME}/.rbenv/shims"
|
|
rm *
|
|
|
|
for file in ../versions/*/bin/*; do
|
|
ln -fs ../bin/rbenv-shim "${file##*/}"
|
|
done
|