Skip to content

Commit

Permalink
fix: jsonschema build ignore casing (#2728)
Browse files Browse the repository at this point in the history
closes #2727

Signed-off-by: Carlos A Becker <caarlos0@gmail.com>
  • Loading branch information
caarlos0 committed Dec 4, 2021
1 parent 6774755 commit 3b620f6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,10 @@ type BuildHooks struct { // renamed on pro

// IgnoredBuild represents a build ignored by the user.
type IgnoredBuild struct {
Goos, Goarch, Goarm, Gomips string
Goos string `yaml:"goos,omitempty"`
Goarch string `yaml:"goarch,omitempty"`
Goarm string `yaml:"goarm,omitempty"`
Gomips string `yaml:"gomips,omitempty"`
}

// StringArray is a wrapper for an array of strings.
Expand Down

0 comments on commit 3b620f6

Please sign in to comment.