|
|
@@ -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 <year>.<version>.<patch> 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,
|