blob: 49685824d6c13155416a6b2e7257d1785f72e575 (
plain)
1
2
3
4
5
6
7
8
9
10
|
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 -)"'
}
|