[latex3-commits] [git/LaTeX3-latex3-l3build] master: Tighten up 'clean up' match (088f283)

Joseph Wright joseph.wright at morningstar2.co.uk
Thu Feb 22 12:51:40 CET 2018


Repository : https://github.com/latex3/l3build
On branch  : master
Link       : https://github.com/latex3/l3build/commit/088f283bbf6359eb1a551ae7f892f55ace9471b4

>---------------------------------------------------------------

commit 088f283bbf6359eb1a551ae7f892f55ace9471b4
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date:   Thu Feb 22 11:51:40 2018 +0000

    Tighten up 'clean up' match
    
    This avoids the same files being picked up for different engines.


>---------------------------------------------------------------

088f283bbf6359eb1a551ae7f892f55ace9471b4
 l3build-check.lua |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/l3build-check.lua b/l3build-check.lua
index 66319cc..4dcede1 100644
--- a/l3build-check.lua
+++ b/l3build-check.lua
@@ -672,7 +672,7 @@ function runtest(name, engine, hide, ext, makepdf)
   -- Store secondary files for this engine
   for _,filetype in pairs(auxfiles) do
     for _,file in pairs(filelist(testdir, filetype)) do
-      if match(file,"^" .. name) then
+      if match(file,"^" .. name .. ".[^.]+$") then
         local ext = match(file, "%.[^.]+$")
         if ext ~= lvtext and
            ext ~= tlgext and





More information about the latex3-commits mailing list