Skip to content

Commit

Permalink
Fix ASCII engine handling
Browse files Browse the repository at this point in the history
  • Loading branch information
josephwright committed Feb 10, 2019
1 parent 04aa329 commit 9215582
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -9,6 +9,7 @@ this project uses date-based 'snapshot' version identifiers.

### Fixed

- Handling of ASCII engines
- Execution of all tests by `ctan` target (see #85)

## [2019-02-06]
Expand Down
4 changes: 2 additions & 2 deletions l3build-check.lua
@@ -1,6 +1,6 @@
--[[
File l3build-check.lua Copyright (C) 2018 The LaTeX3 Project
File l3build-check.lua Copyright (C) 2018,2019 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
Expand Down Expand Up @@ -701,7 +701,7 @@ function runtest(name, engine, hide, ext, pdfmode, breakout)
local npffile = basename .. "." .. engine .. pdfext
local asciiopt = ""
for _,i in ipairs(asciiengines) do
if realengine == i then
if binary == i then
asciiopt = "-translate-file ./ascii.tcx "
break
end
Expand Down

0 comments on commit 9215582

Please sign in to comment.