mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 13:07:13 +08:00
19 lines
556 B
Plaintext
19 lines
556 B
Plaintext
post_install() {
|
|
echo ">>> texlive: updating the filename database..."
|
|
usr/bin/mktexlsr
|
|
echo -n "creating all formats..."
|
|
usr/bin/fmtutil-sys --all 1>/dev/null
|
|
echo " done."
|
|
echo " (logs are under /var/lib/texmf/web2c/<engine>/<formatname>.log)"
|
|
}
|
|
|
|
post_upgrade() {
|
|
echo ">>> texlive: updating the filename database..."
|
|
usr/bin/mktexlsr
|
|
echo -n "recreating all formats..."
|
|
usr/bin/fmtutil-sys --all 1>/dev/null
|
|
echo " done."
|
|
echo " (logs are under /var/lib/texmf/web2c/<engine>/<formatname>.log)"
|
|
}
|
|
|