diff options
author | Norbert Preining <preining@logic.at> | 2018-10-10 07:25:30 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2018-10-10 07:25:30 +0000 |
commit | 4b3d47f963f4ccf49bcfe374d7dc10bf04644b9b (patch) | |
tree | 09ad02aab4b8bd188b5e2e2f9f4cfb76a2de1e7b | |
parent | 3deed9ea6f589daf7a7e5bd333924f7749d90915 (diff) |
update runscript.tlu for cluttex
git-svn-id: svn://tug.org/texlive/trunk@48877 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/bin/win32/runscript.tlu | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Master/bin/win32/runscript.tlu b/Master/bin/win32/runscript.tlu index 6a9d2cc398e..19b54aafaf7 100755 --- a/Master/bin/win32/runscript.tlu +++ b/Master/bin/win32/runscript.tlu @@ -270,6 +270,9 @@ local docstr = [[ 2018/06/20 - support also scripts in trees other than TEXMFDIST: https://tug.org/pipermail/tex-live/2018-June/041922.html + 2018/10/10 + - support cluttex scripts + ]] -- HELPER SUBROUTINES -- @@ -762,6 +765,12 @@ elseif progname == 'tlperl' then elseif progname == 'latexdef' then progname = 'texdef' argline = ' --tex latex ' .. argline +elseif progname == 'cllualatex' then + progname = 'cluttex' + argline = ' --engine=lualatex ' .. argline +elseif progname == 'clxelatex' then + progname = 'cluttex' + argline = ' --engine=xelatex ' .. argline end -- general case |