Skip to content

Commit

Permalink
verse: Fix TeX package installation
Browse files Browse the repository at this point in the history
  • Loading branch information
benz0li committed Jun 15, 2024
1 parent e26b166 commit 5b4e827
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion verse/latest.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,9 @@ RUN dpkgArch="$(dpkg --print-architecture)" \
&& tlmgr update --self \
## TeX packages as requested by the community
&& curl -sSLO https://yihui.org/gh/tinytex/tools/pkgs-yihui.txt \
&& tlmgr install $(cat pkgs-yihui.txt | tr '\n' ' ') \
&& tlmgr install $(cat pkgs-yihui.txt | sed '/^ms$/d' | tr '\n' ' ') \
## ms: All packages of that bundle have now become independent packages
&& tlmgr install count1to multitoc prelim2e everyshi \
&& rm -f pkgs-yihui.txt \
## TeX packages as in rocker/verse
&& tlmgr install \
Expand Down

0 comments on commit 5b4e827

Please sign in to comment.