PKGBUILDs/community/nodejs/nodejs.install
2015-05-17 01:39:12 +00:00

8 lines
214 B
Plaintext

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 () {
(( $(vercmp $2 '0.12.2-4') < 0 )) && post_install "$1" || true
}