Skip to content

Commit

Permalink
Avoid duplication of copyright data in help()
Browse files Browse the repository at this point in the history
  • Loading branch information
josephwright committed Dec 6, 2021
1 parent 352c84d commit bfa0327
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions l3build-help.lua
Expand Up @@ -27,12 +27,14 @@ local match = string.match
local rep = string.rep
local sort = table.sort
local copyright = "Copyright (C) 2014-2021 The LaTeX Project"
function version()
print(
"\n" ..
"l3build: A testing and building system for LaTeX\n\n" ..
"Release " .. release_date .. "\n" ..
"Copyright (C) 2014-2021 The LaTeX Project"
copyright
)
end
Expand Down Expand Up @@ -87,5 +89,5 @@ function help()
print("")
print("Repository : https://github.com/latex3/l3build")
print("Bug tracker : https://github.com/latex3/l3build/issues")
print("Copyright (C) 2014-2020 The LaTeX Project")
print(copyright)
end

0 comments on commit bfa0327

Please sign in to comment.