blob: 88a452e767b750b4d2c355b661eaa27a62ba85f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
## arg 1: the new package version
post_install() {
echo "
You need to source nvm before you can use it. Do one of the following
or similar depending on your shell:
echo 'source /usr/share/nvm/init-nvm.sh' >> ~/.bashrc
echo 'source /usr/share/nvm/init-nvm.sh' >> ~/.zprofile
Alternatively, you can copy the contents of init-nvm.sh to your
.bashrc (or similar) if you would like an NVM_DIR other than ~/.nvm
"
}
## arg 1: the new package version
## arg 2: the old package version
post_upgrade() {
post_install
}
## arg 1: the old package version
post_remove() {
echo "
Don't forget to clean up any lines added to your shell's startup script!
For example, from your .bashrc (or .zprofile etc.), delete the line:
source /usr/share/nvm/init-nvm.sh
"
}
# vim:set ts=2 sw=2 et:
|