16 lines
301 B
Bash
16 lines
301 B
Bash
#!/bin/sh
|
|
|
|
cd /usr/local/texlive/
|
|
if [ -d 2023 ]
|
|
then
|
|
cp -a 2023 2024
|
|
rm -f 2024/tlpkg/backups/*
|
|
cd 2024
|
|
wget https://mirror.ctan.org/systems/texlive/tlnet/update-tlmgr-latest.sh
|
|
sh update-tlmgr-latest.sh -- --upgrade
|
|
fi
|
|
tlmgr update --self --all
|
|
tlmgr install scheme-full
|
|
luaotfload-tool -fu
|
|
|