Skip to content

Commit

Permalink
pubtools: Fix TeX package installation
Browse files Browse the repository at this point in the history
- soulutf8 has been merged into soul
- rstudio/tinytex#402
  • Loading branch information
benz0li committed Feb 22, 2023
1 parent a70ee6b commit 98bda22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pubtools/latest.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ 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 '/soulutf8/d' | tr '\n' ' ') \
&& rm -f pkgs-yihui.txt \
## TeX packages as in rocker/verse
&& tlmgr install \
Expand Down

0 comments on commit 98bda22

Please sign in to comment.