diff options
author | Karl Berry <karl@freefriends.org> | 2019-02-08 23:00:59 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-02-08 23:00:59 +0000 |
commit | ab1456ac100fab623d9d9e62c3ba878930d944aa (patch) | |
tree | a235def7a689e9590f6d29f43274fdafe52ce434 /Build | |
parent | f22da8de751b570b9a23401289409b32368e867e (diff) |
l3build (7feb19)
git-svn-id: svn://tug.org/texlive/trunk@49981 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/texlive/linked_scripts/l3build/l3build.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua b/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua index 3422f4d81a9..78db32d4130 100644 --- a/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua +++ b/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua @@ -25,7 +25,7 @@ for those people who are interested. --]] -- Version information -release_date = "2018-11-08" +release_date = "2019-02-06" -- File operations are aided by the LuaFileSystem module local lfs = require("lfs") @@ -37,6 +37,7 @@ local ipairs = ipairs local insert = table.insert local lookup = kpse.lookup local match = string.match +local gsub = string.gsub local next = next local print = print local select = select @@ -174,7 +175,7 @@ end if #checkconfigs == 1 and checkconfigs[1] ~= "build" and (options["target"] == "check" or options["target"] == "save") then - local config = "./" .. checkconfigs[1] .. ".lua" + local config = "./" .. gsub(checkconfigs[1],".lua$","") .. ".lua" if fileexists(config) then dofile(config) testdir = testdir .. "-" .. checkconfigs[1] |