blob: 584660bf95ff055bf4c0fed748e9566c49102597 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
## arg 1: the new package version
post_install() {
/usr/bin/update-desktop-database -q
}
## arg 1: the new package version
## arg 2: the old package version
post_upgrade() {
/usr/bin/update-desktop-database -q
}
## arg 1: the old package version
post_remove() {
/usr/bin/update-desktop-database -q
}
|