diff options
author | Karl Berry <karl@freefriends.org> | 2021-12-06 21:24:33 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2021-12-06 21:24:33 +0000 |
commit | 6bb024a4a5230e73a2dd96b4e8c71b3ccaedef0c (patch) | |
tree | f18f2762aca4c3d0dfa193b40387b6d1237d9ad0 /Master/texmf-dist/scripts | |
parent | 9a6d397894e5f0d70b0edc24fd487495957ed3f3 (diff) |
l3build (6dec21)
git-svn-id: svn://tug.org/texlive/trunk@61235 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rw-r--r-- | Master/texmf-dist/scripts/l3build/l3build-help.lua | 6 | ||||
-rw-r--r-- | Master/texmf-dist/scripts/l3build/l3build-typesetting.lua | 1 | ||||
-rwxr-xr-x | Master/texmf-dist/scripts/l3build/l3build.lua | 2 |
3 files changed, 6 insertions, 3 deletions
diff --git a/Master/texmf-dist/scripts/l3build/l3build-help.lua b/Master/texmf-dist/scripts/l3build/l3build-help.lua index 137fc040c52..62d35de03ae 100644 --- a/Master/texmf-dist/scripts/l3build/l3build-help.lua +++ b/Master/texmf-dist/scripts/l3build/l3build-help.lua @@ -27,12 +27,14 @@ local match = string.match local rep = string.rep local sort = table.sort +local copyright = "Copyright (C) 2014-2021 The LaTeX Project\n" + function version() print( "\n" .. "l3build: A testing and building system for LaTeX\n\n" .. "Release " .. release_date .. "\n" .. - "Copyright (C) 2014-2021 The LaTeX Project" + copyright ) end @@ -87,5 +89,5 @@ function help() print("") print("Repository : https://github.com/latex3/l3build") print("Bug tracker : https://github.com/latex3/l3build/issues") - print("Copyright (C) 2014-2020 The LaTeX Project") + print(copyright) end diff --git a/Master/texmf-dist/scripts/l3build/l3build-typesetting.lua b/Master/texmf-dist/scripts/l3build/l3build-typesetting.lua index d6d3981d7b9..cc04ac1e38e 100644 --- a/Master/texmf-dist/scripts/l3build/l3build-typesetting.lua +++ b/Master/texmf-dist/scripts/l3build/l3build-typesetting.lua @@ -210,6 +210,7 @@ function doc(files) for _,typesetfiles in ipairs({typesetdemofiles,typesetfiles}) do for _,glob in pairs(typesetfiles) do local destpath,globstub = splitpath(glob) + destpath = docfiledir .. gsub(gsub(destpath,"^./",""),"^.","") for _,p in ipairs(tree(typesetdir,globstub)) do local path,srcname = splitpath(p.cwd) local name = jobname(srcname) diff --git a/Master/texmf-dist/scripts/l3build/l3build.lua b/Master/texmf-dist/scripts/l3build/l3build.lua index 09a70942c64..2c555373f60 100755 --- a/Master/texmf-dist/scripts/l3build/l3build.lua +++ b/Master/texmf-dist/scripts/l3build/l3build.lua @@ -25,7 +25,7 @@ for those people who are interested. --]] -- Version information -release_date = "2021-11-29" +release_date = "2021-12-06" -- File operations are aided by the LuaFileSystem module local lfs = require("lfs") |