From 595c8cdd968a492841afcacc8b06a3d36f42da78 Mon Sep 17 00:00:00 2001 From: Luis Moris Fernandez Date: Fri, 24 Jan 2025 10:23:00 +0100 Subject: [PATCH 1/2] include_pdf_latex --- scripts/install_sys_deps.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/install_sys_deps.sh b/scripts/install_sys_deps.sh index 6db5377..78bb559 100755 --- a/scripts/install_sys_deps.sh +++ b/scripts/install_sys_deps.sh @@ -8,6 +8,7 @@ lbzip2 \ rsync \ qpdf \ wget \ +texlive-latex-base\ " apt-get update -y # shellcheck disable=SC2086 From c7effe277263eaa586a001945a60d5be70dbdcd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Mor=C3=ADs=20Fern=C3=A1ndez?= <6012476+zsigmas@users.noreply.github.com> Date: Mon, 27 Jan 2025 10:43:25 +0100 Subject: [PATCH 2/2] include comment for texlive-latex-base It is the package that includes pdflatex, but it is not obvious based on the package name Co-authored-by: ml-ebs-ext <157474668+ml-ebs-ext@users.noreply.github.com> --- scripts/install_sys_deps.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/install_sys_deps.sh b/scripts/install_sys_deps.sh index 78bb559..06a77e9 100755 --- a/scripts/install_sys_deps.sh +++ b/scripts/install_sys_deps.sh @@ -10,6 +10,7 @@ qpdf \ wget \ texlive-latex-base\ " +# texlive-latex-base because it contains `pdflatex` apt-get update -y # shellcheck disable=SC2086 apt-get install -q -y ${pkgs_to_install}