mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 04:14:39 +08:00
16 lines
244 B
Plaintext
16 lines
244 B
Plaintext
|
post_install() {
|
||
|
post_remove $1
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install $1
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
echo -n "==> Rebuilding font cache... "
|
||
|
fc-cache -f &> /dev/null
|
||
|
mkfontscale /usr/share/fonts/OTF
|
||
|
mkfontdir /usr/share/fonts/OTF
|
||
|
echo "done"
|
||
|
}
|