blob: 24f85f2328bd57f8e9821b17f659e5a7456a63f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
## arg 1: the new package version
post_install() {
update-desktop-database -q
}
## arg 1: the old package version
post_remove() {
update-desktop-database -q
}
# vim:set ts=2 sw=2 et:
|