blob: 48736bbc8ad41de0da4d4071bef4015ebc26fba6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install(){
cd /usr/lib/node_modules/dict
which yarn >/dev/null 2>&1 && yarn install || npm install
echo -e "\n[32;1m[+] [0;1mThank you for using dict!\n"
}
post_upgrade(){
cd /usr/lib/node_modules/dict
which yarn >/dev/null 2>&1 && yarn install || npm install
}
pre_remove(){
rm -rf /usr/lib/node_modules/dict
}
|