blob: 88c5facbbf1422be560457d68c76ffa0dec942f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
echo -n "Updating desktop MIME database..."
update-desktop-database -q
[ $? -eq 0 ] && echo " Done." || echo " FAILED!"
}
post_upgrade() {
post_install $1
}
post_remove() {
post_install $1
}
|