[latex3-commits] [l3svn] 04/05: l3build: Pass through new -d/-v data

noreply at latex-project.org noreply at latex-project.org
Wed Oct 7 23:36:00 CEST 2015


This is an automated email from the git hooks/post-receive script.

joseph pushed a commit to branch master
in repository l3svn.

commit 9bd0ba2aa33af13ec6c61513b6c5afd186dd7f6c
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date:   Wed Oct 7 22:34:01 2015 +0100

    l3build: Pass through new -d/-v data
---
 l3build/l3build.lua |   10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/l3build/l3build.lua b/l3build/l3build.lua
index f1aa697..ba9a6d1 100644
--- a/l3build/l3build.lua
+++ b/l3build/l3build.lua
@@ -584,15 +584,25 @@ function allmodules(target)
         .. "\" for module "
         .. i
     )
+    local date = ""
+    if optdate then
+      date = " --date=" .. optdate[1]
+    end
     local engines = ""
     if optengines then
       engines = " --engine=" .. table.concat(optengines, ",")
     end
+    local version = ""
+    if optversion then
+      version = " --version=" .. optversion[1]
+    end
     local errorlevel = run(
       i,
       "texlua " .. scriptname .. " " .. target
         .. (opthalt and " -H" or "")
+        .. date
         .. engines
+        .. version
     )
     if errorlevel ~= 0 then
       return errorlevel

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the latex3-commits mailing list