blob: e2a40e10550cbeba39b2ef54c7bd2750cbf00eb6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_install() {
echo 'Your shell must be initialized before anyenv will function correctly.'
echo 'Run the following, and consider adding it to your ~/.bashrc:'
echo ' eval "$(anyenv init -)"'
}
post_remove() {
echo 'Remove the following from your ~/.bashrc, if present:'
echo ' eval "$(anyenv init -)"'
}
|