11 lines
321 B
Plaintext
11 lines
321 B
Plaintext
|
post_install() {
|
||
|
echo 'Your shell must be initialized before rbenv will function correctly.'
|
||
|
echo 'Run the following, and consider adding it to your ~/.bashrc:'
|
||
|
echo ' eval "$(rbenv init -)"'
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
echo 'Remove the following from your ~/.bashrc, if present:'
|
||
|
echo ' eval "$(rbenv init -)"'
|
||
|
}
|