diff options
author | Karl Berry <karl@freefriends.org> | 2019-09-18 21:57:54 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-09-18 21:57:54 +0000 |
commit | 57d8e344d4a807272cc4f5ee6c04af89ff866756 (patch) | |
tree | c4a0f1bde530f3bb23465d1ccda18efd544012c1 /Master/texmf-dist/scripts | |
parent | b2f37ee52f7c16b06e80a904fd3e59c0e88d1bfd (diff) |
l3build (18sep19)
git-svn-id: svn://tug.org/texlive/trunk@52119 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rw-r--r-- | Master/texmf-dist/scripts/l3build/l3build-check.lua | 3 | ||||
-rwxr-xr-x | Master/texmf-dist/scripts/l3build/l3build.lua | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/l3build/l3build-check.lua b/Master/texmf-dist/scripts/l3build/l3build-check.lua index c05defc792c..8d1d58aee3e 100644 --- a/Master/texmf-dist/scripts/l3build/l3build-check.lua +++ b/Master/texmf-dist/scripts/l3build/l3build-check.lua @@ -81,8 +81,11 @@ function checkinit() cp(i, supportdir, testdir) end execute(os_ascii .. ">" .. testdir .. "/ascii.tcx") + return checkinit_hook() end +checkinit_hook = checkinit_hook or function() return 0 end + local function rewrite(source,result,processor,...) local file = assert(open(source,"rb")) local content = gsub(file:read("*all") .. "\n","\r\n","\n") diff --git a/Master/texmf-dist/scripts/l3build/l3build.lua b/Master/texmf-dist/scripts/l3build/l3build.lua index fb7b727f804..c0eea6b33a9 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 = "2019-09-14" +release_date = "2019-09-18" -- File operations are aided by the LuaFileSystem module local lfs = require("lfs") |