From 38c702ddd42e09e8a233d98752f6730ae471753a Mon Sep 17 00:00:00 2001 From: Jimmy Domagala-Tang Date: Mon, 22 Sep 2025 10:25:11 -0400 Subject: [PATCH] add persistent directory for rolling builds texlive location (#28563) GitOrigin-RevId: ea131bc99f27be32055d40a92a967f524f29d02d --- services/clsi/app/js/DockerRunner.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/services/clsi/app/js/DockerRunner.js b/services/clsi/app/js/DockerRunner.js index 039cb5acd6..647d26d6d5 100644 --- a/services/clsi/app/js/DockerRunner.js +++ b/services/clsi/app/js/DockerRunner.js @@ -230,7 +230,9 @@ const DockerRunner = { } // set the path based on the image year const match = image.match(/:([0-9]+)\.[0-9]+/) - const year = match ? match[1] : '2014' + // the rolling build does not follow our .. convention + const year = match ? match[1] : 'rolling' + env.PATH = `/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/texlive/${year}/bin/x86_64-linux/` const options = { Cmd: command,