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