10 lines
143 B
Bash
10 lines
143 B
Bash
#!/bin/bash
|
|
|
|
if command -v rbenv > /dev/null; then
|
|
eval "$(rbenv init -)"
|
|
fi
|
|
|
|
function dotfiles_install_rbenv {
|
|
sudo apt install rbenv
|
|
}
|