Skip to content

Commit

Permalink
Removed warning and added default return value
Browse files Browse the repository at this point in the history
  • Loading branch information
michal-h21 committed May 29, 2024
1 parent 9ddb7f9 commit d5f9f0b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion make4ht-xtpipes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ local function replace_lg_file()
mkutils.cp(lg_in_builddir, lg_name)
return true, lg_name
end
log:warning(lg_name, lg_in_builddir)
-- don't copy the Lg file if --build_fir option isn't used
return false, lg_name
end

function M.get_xtpipes(selfautoparent)
Expand Down

0 comments on commit d5f9f0b

Please sign in to comment.