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