mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
14 lines
171 B
Plaintext
14 lines
171 B
Plaintext
post_install() {
|
|
echo -n "Updating font cache... "
|
|
fc-cache -f > /dev/null
|
|
echo "Done."
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
post_remove() {
|
|
post_install $1
|
|
}
|