From 5f527d1fae2ed20c261f142328b34bdfa325221f Mon Sep 17 00:00:00 2001 From: Chris Koch Date: Fri, 16 Feb 2024 05:02:30 +0000 Subject: [PATCH] Fix typo This is why I should never merge things untested. Signed-off-by: Chris Koch --- uimage/uimage.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uimage/uimage.go b/uimage/uimage.go index c52e123..edb2b26 100644 --- a/uimage/uimage.go +++ b/uimage/uimage.go @@ -391,7 +391,7 @@ func WithBinaryCommandsOpts(gbOpts *golang.BuildOpts, cmd ...string) Modifier { // // Allowed formats for cmd are documented in [WithCommands]. func WithCoveredCommands(cmd ...string) Modifier { - return WithCommands(&golang.BuildOpts{ExtraArgs: []string{"-cover", "covermode=atomic"}}, builder.Binary, cmd...) + return WithCommands(&golang.BuildOpts{ExtraArgs: []string{"-cover", "-covermode=atomic"}}, builder.Binary, cmd...) } // WithOutput sets the archive output file.