On Tue, Mar 10, 2009 at 11:47 PM, Thomas A. Schmitz
On Mar 10, 2009, at 11:32 PM, Hans Hagen wrote:
OK, for a change, I now get a different error: MtxRun | loading configuration for /Users/tas/context/tex/texmf/web2c from /Users/tas/context/tex/texmf-cache/luatex-cache/context/408a90c432ceda2c1e4a80ad5d0e5350/trees/168418f5ffa37b7a35ee75166c53fe90 /Users/tas/context/tex/texmf-osx-intel/bin/mtxrun:8438: bad argument #2 to 'format' (string expected, got nil) but the format has been successfully created, AFAICS. Btw, I just compiled luatex --version This is LuaTeX, Version snapshot-0.36.0-2009031020, build 1979
i uploaded a new zip
Still the same error.
Around line 64 of mtx-metatex.lua local formatfile, scriptfile = input.locate_format("metatex") if formatfile and scriptfile then local command = string.format("luatex --fmt=%s --lua=% %s", string.quote(formatfile), string.quote(scriptfile), string.quote(filename)) input.report("running command: %s",command) os.spawn(command) Is local command = string.format("luatex --fmt=%s --lua=% %s", string.quote(formatfile), string.quote(scriptfile), string.quote(filename)) correct ? Why not local command = string.format("luatex --fmt=%s --lua=%s %s", string.quote(formatfile), string.quote(scriptfile), string.quote(filename)) -- luigi