Skip to content

Commit

Permalink
Issue info message if --dev is used with non-LaTeX format
Browse files Browse the repository at this point in the history
  • Loading branch information
josephwright committed Oct 16, 2024
1 parent 4afdba3 commit 9ddd467
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions l3build.lua
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,12 @@ if forcedocepoch then
end
end
-- Allow for LaTeX "dev" release
if options["dev"] and checkformat == "latex" then
checkformat = "latex-dev"
if options["dev"]
if checkformat == "latex" then
checkformat = "latex-dev"
elseif checkformat ~= "latex-dev" then
print("Ingoring --dev option with non-LaTeX format")
end
end

--
Expand Down

0 comments on commit 9ddd467

Please sign in to comment.