summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/l3build/l3build-file-functions.lua
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2020-01-15 03:00:56 +0000
committerNorbert Preining <norbert@preining.info>2020-01-15 03:00:56 +0000
commit3bd863734612dc2fe9c5c7c1405358ffb1228afb (patch)
tree9f7d421c227b998debe92dac90f4cf8634a8f94f /macros/latex/contrib/l3build/l3build-file-functions.lua
parentb3225c4301e7724de481f410444fef5463799b9d (diff)
CTAN sync 202001150300
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