diff options
author | Karl Berry <karl@freefriends.org> | 2018-10-31 20:46:39 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2018-10-31 20:46:39 +0000 |
commit | 4dd72b85bfd4d4b2965492d52e50a45937cc2934 (patch) | |
tree | 6e9a75e1da7a42525039952213f1c82298238db5 /Master/texmf-dist/scripts/l3build | |
parent | 804ed7ce7196cf360741cbec749e065de884151d (diff) |
l3 (31oct18)
git-svn-id: svn://tug.org/texlive/trunk@49038 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/l3build')
-rw-r--r-- | Master/texmf-dist/scripts/l3build/l3build-file-functions.lua | 2 | ||||
-rwxr-xr-x | Master/texmf-dist/scripts/l3build/l3build.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf-dist/scripts/l3build/l3build-file-functions.lua b/Master/texmf-dist/scripts/l3build/l3build-file-functions.lua index bf5ce872b15..cc1bef67fa8 100644 --- a/Master/texmf-dist/scripts/l3build/l3build-file-functions.lua +++ b/Master/texmf-dist/scripts/l3build/l3build-file-functions.lua @@ -194,7 +194,7 @@ function escapepath(path) else path = gsub(path,"\\ ","[PATH-SPACE]") path = gsub(path," ","\\ ") - return gsub(path,"[PATH-SPACE]","\\ ") + return gsub(path,"%[PATH-SPACE%]","\\ ") end end diff --git a/Master/texmf-dist/scripts/l3build/l3build.lua b/Master/texmf-dist/scripts/l3build/l3build.lua index bb5b27bfd80..ee17fe2ab84 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 = "2018-10-25" +release_date = "2018-10-30" -- File operations are aided by the LuaFileSystem module local lfs = require("lfs") |