Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
This is why I should never merge things untested.

Signed-off-by: Chris Koch <[email protected]>
  • Loading branch information
hugelgupf committed Feb 16, 2024
1 parent 46ed0fc commit 5f527d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uimage/uimage.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 5f527d1

Please sign in to comment.