diff options
author | Karl Berry <karl@freefriends.org> | 2020-01-15 21:48:55 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2020-01-15 21:48:55 +0000 |
commit | 2d0c592a08a1d7e8aaedaa33d399be6c181dcef3 (patch) | |
tree | 6617b3656d99bbb50a5d40075adebf8fbcecac71 /Master/texmf-dist/scripts/l3build | |
parent | 2d3bedd1a7e270e4dd23b31bfc71332f97689ec0 (diff) |
l3build (15jan20)
git-svn-id: svn://tug.org/texlive/trunk@53413 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 | 6 | ||||
-rwxr-xr-x | Master/texmf-dist/scripts/l3build/l3build.lua | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Master/texmf-dist/scripts/l3build/l3build-file-functions.lua b/Master/texmf-dist/scripts/l3build/l3build-file-functions.lua index 9c7ac1fb6df..e3000b45efb 100644 --- a/Master/texmf-dist/scripts/l3build/l3build-file-functions.lua +++ b/Master/texmf-dist/scripts/l3build/l3build-file-functions.lua @@ -1,6 +1,6 @@ --[[ -File l3build-file-functions.lua Copyright (C) 2018,2019 The LaTeX3 Project +File l3build-file-functions.lua Copyright (C) 2018-2020 The LaTeX3 Project It may be distributed and/or modified under the conditions of the LaTeX Project Public License (LPPL), either version 1.3c of this @@ -128,7 +128,7 @@ os_concat = ";" os_null = "/dev/null" os_pathsep = ":" os_setenv = "export" -os_yes = "printf 'y\\n%.0s' {1..200}" +os_yes = "printf 'y\\n%.0s' {1..300}" os_ascii = "echo \"\"" os_cmpexe = getenv("cmpexe") or "cmp" @@ -155,7 +155,7 @@ if os_type == "windows" then os_null = "nul" os_pathsep = ";" os_setenv = "set" - os_yes = "for /l %I in (1,1,200) do @echo y" + os_yes = "for /l %I in (1,1,300) do @echo y" end -- Deal with the fact that Windows and Unix use different path separators diff --git a/Master/texmf-dist/scripts/l3build/l3build.lua b/Master/texmf-dist/scripts/l3build/l3build.lua index ebfe0cef55f..95436dd2e9b 100755 --- a/Master/texmf-dist/scripts/l3build/l3build.lua +++ b/Master/texmf-dist/scripts/l3build/l3build.lua @@ -2,7 +2,7 @@ --[[ -File l3build.lua Copyright (C) 2014-2019 The LaTeX3 Project +File l3build.lua Copyright (C) 2014-2020 The LaTeX3 Project It may be distributed and/or modified under the conditions of the LaTeX Project Public License (LPPL), either version 1.3c of this @@ -25,7 +25,7 @@ for those people who are interested. --]] -- Version information -release_date = "2019-11-27" +release_date = "2020-01-14" -- File operations are aided by the LuaFileSystem module local lfs = require("lfs") |