mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-01-24 01:42:13 +08:00
13 lines
356 B
Plaintext
13 lines
356 B
Plaintext
|
post_install() {
|
||
|
[ -x `which update-mime-database` ] && update-mime-database /usr/share/mime
|
||
|
[ -x `which update-desktop-database` ] && update-desktop-database
|
||
|
/bin/true
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
[ -x `which update-mime-database` ] && update-mime-database /usr/share/mime
|
||
|
[ -x `which update-desktop-database` ] && update-desktop-database
|
||
|
/bin/true
|
||
|
}
|
||
|
|