25aeea4f41
As texlive2021 has been released the default repository no longer contains the 2020 version. Make the installer use the frozen historic one.
15 lines
394 B
Text
15 lines
394 B
Text
case "${ACTION}" in
|
|
post)
|
|
case "${UPDATE}" in
|
|
no)
|
|
cd opt/texlive2020-installer
|
|
case "${ARCH}" in
|
|
x86_64-musl)
|
|
./install-tl -repository ftp://ftp.tug.org/texlive/historic/2020/tlnet-final/ -profile void.profile -force-platform x86_64-linuxmusl
|
|
;;
|
|
*)
|
|
./install-tl -repository ftp://ftp.tug.org/texlive/historic/2020/tlnet-final/ -profile void.profile
|
|
;;
|
|
esac
|
|
esac
|
|
esac
|