mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 07:34:35 +08:00
13 lines
219 B
Plaintext
13 lines
219 B
Plaintext
|
post_install() {
|
||
|
update-mime-database usr/share/mime &> /dev/null
|
||
|
[[ -x usr/bin/update-desktop-database ]] && update-desktop-database -q || true
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
post_install
|
||
|
}
|