mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
14 lines
236 B
Plaintext
14 lines
236 B
Plaintext
|
|
post_install() {
|
|
echo "update desktop mime database..."
|
|
update-mime-database usr/share/mime > /dev/null 2>&1
|
|
update-desktop-database -q > /dev/null 2>&1
|
|
}
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
post_remove() {
|
|
post_install $1
|
|
}
|