mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
16 lines
285 B
Bash
16 lines
285 B
Bash
## arg 1: the new package version
|
|
post_install() {
|
|
update-desktop-database -q
|
|
}
|
|
|
|
## arg 1: the new package version
|
|
## arg 2: the old package version
|
|
post_upgrade() {
|
|
update-desktop-database -q
|
|
}
|
|
|
|
## arg 1: the old package version
|
|
post_remove() {
|
|
update-desktop-database -q
|
|
}
|