PKGBUILDs/community/nodejs/nodejs.install

8 lines
214 B
Plaintext
Raw Normal View History

2015-05-08 12:43:59 +00:00
post_install () {
echo "Notice: npm is not shipped with nodejs since 0.12.2-4, please install npm manually if you need it."
}
post_upgrade () {
2015-05-17 01:37:33 +00:00
(( $(vercmp $2 '0.12.2-4') < 0 )) && post_install "$1" || true
2015-05-08 12:43:59 +00:00
}