summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/l3build/l3build-file-functions.lua
diff options
context:
space:
mode:
Diffstat (limited to 'macros/latex/contrib/l3build/l3build-file-functions.lua')
-rw-r--r--macros/latex/contrib/l3build/l3build-file-functions.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/macros/latex/contrib/l3build/l3build-file-functions.lua b/macros/latex/contrib/l3build/l3build-file-functions.lua
index 9c7ac1fb6d..e3000b45ef 100644
--- a/macros/latex/contrib/l3build/l3build-file-functions.lua
+++ b/macros/latex/contrib/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