[latex3-commits] [git/LaTeX3-latex3-l3build] main: Improve stdout "Running l3build with target ..." (c7e1a67)

Joseph Wright joseph.wright at morningstar2.co.uk
Sun Apr 16 13:11:18 CEST 2023


Repository : https://github.com/latex3/l3build
On branch  : main
Link       : https://github.com/latex3/l3build/commit/c7e1a67e558e507fd313f61e4417542a66ff61c7

>---------------------------------------------------------------

commit c7e1a67e558e507fd313f61e4417542a66ff61c7
Author: Yukai Chou <muzimuzhi at gmail.com>
Date:   Sat Apr 15 21:44:12 2023 +0800

    Improve stdout "Running l3build with target ..."


>---------------------------------------------------------------

c7e1a67e558e507fd313f61e4417542a66ff61c7
 CHANGELOG.md    | 3 +++
 l3build-aux.lua | 4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index bcfd681..439ef78 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,9 @@ this project uses date-based 'snapshot' version identifiers.
 
 ## [Unreleased]
 
+### Changed
+- Improve stdout "Running l3build with target ..."
+
 ## [2023-03-27]
 
 ### Fixed
diff --git a/l3build-aux.lua b/l3build-aux.lua
index 2f6902a..f61ddfb 100644
--- a/l3build-aux.lua
+++ b/l3build-aux.lua
@@ -133,9 +133,9 @@ function call(modules, target, opts)
   for _, module in ipairs(modules) do
     local text
     if module == "." and opts["config"] and #opts["config"]>0 then
-      text = " with configuration " .. opts["config"][1]
+      text = " and configuration \"" .. opts["config"][1] .. "\""
     else
-      text = " for module " .. module
+      text = " for module \"" .. module .. "\""
     end
     print("Running l3build with target \"" .. target .. "\"" .. text )
     local error_level = run(





More information about the latex3-commits mailing list.