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