Fix Custom command line options

This commit is contained in:
David Vogel 2025-02-26 17:01:44 +01:00
parent d7fc966a42
commit c2d62b2373

View File

@ -116,5 +116,7 @@ func (c *CLIOptions) Args() (result []string) {
result = append(result, "--pdf-standard", c.PDFStandard)
}
result = append(result, c.Custom...)
return
}