From c2d62b23736b53303d1d00661368b4f71a823712 Mon Sep 17 00:00:00 2001 From: David Vogel Date: Wed, 26 Feb 2025 17:01:44 +0100 Subject: [PATCH] Fix Custom command line options --- cli-options.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli-options.go b/cli-options.go index ba72d78..2ed4563 100644 --- a/cli-options.go +++ b/cli-options.go @@ -116,5 +116,7 @@ func (c *CLIOptions) Args() (result []string) { result = append(result, "--pdf-standard", c.PDFStandard) } + result = append(result, c.Custom...) + return }