mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 02:22:15 +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
|
|
}
|