mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 02:27:13 +08:00
14 lines
197 B
Plaintext
14 lines
197 B
Plaintext
post_install() {
|
|
if type -P update-mime-database &> /dev/null; then
|
|
update-mime-database usr/share/mime >/dev/null
|
|
fi
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
post_remove() {
|
|
post_install
|
|
}
|