Skip to content

Commit d89410f

Browse files
authored
Merge pull request #156 from ChemiKyle/temp_patch_texlive
Implement hacky fix for tlmgr 2023 being unable to install packages
2 parents b753c0a + 1e81e81 commit d89410f

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Dockerfile

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
FROM --platform=linux/amd64 rocker/verse:4.3.2
1+
FROM --platform=linux/amd64 rocker/verse:4.3.3
22

33
WORKDIR /home/rocker
44

55
RUN apt update -y && apt install -y libmariadb-dev libmariadb-dev-compat
66
RUN apt install -y --no-install-recommends libxt6
77

8+
# returns an error but tlmgr is updated to 2024 regardless
9+
RUN wget ${CTAN_REPO}/update-tlmgr-latest.sh && bash update-tlmgr-latest.sh; exit 0
10+
811
# install necessary libraries
912
RUN R -e "install.packages(c( \
1013
'DBI', \

R/logging.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ send_email <-
689689
email_to <- unlist(strsplit(email_to, " "))
690690
}
691691

692-
email_content <- list(email_body)
692+
email_content <- email_body
693693

694694
if (!is.null(file_name)) {
695695
output_dir <- tempdir()

0 commit comments

Comments
 (0)