Skip to content

Commit

Permalink
Allow for more extracted files from DocStrip
Browse files Browse the repository at this point in the history
Needed for latex-tools.
  • Loading branch information
josephwright committed Jan 14, 2020
1 parent cc9b46f commit 17d7fe2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,10 @@ this project uses date-based 'snapshot' version identifiers.

## [Unreleased]

### Fixed

- Allow for more extracted files from DocStrip

## [2019-11-27]

### Changed
Expand Down
4 changes: 2 additions & 2 deletions l3build-file-functions.lua
Expand Up @@ -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"
Expand All @@ -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
Expand Down

0 comments on commit 17d7fe2

Please sign in to comment.