Skip to content

Commit

Permalink
fix: brews.url_headers is not required
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
  • Loading branch information
caarlos0 committed Mar 3, 2024
1 parent ec22d60 commit e0db6ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/config/config.go
Expand Up @@ -239,7 +239,7 @@ type Homebrew struct {
SkipUpload string `yaml:"skip_upload,omitempty" json:"skip_upload,omitempty" jsonschema:"oneof_type=string;boolean"`
DownloadStrategy string `yaml:"download_strategy,omitempty" json:"download_strategy,omitempty"`
URLTemplate string `yaml:"url_template,omitempty" json:"url_template,omitempty"`
URLHeaders []string `yaml:"url_headers" json:"url_headers"`
URLHeaders []string `yaml:"url_headers,omitempty" json:"url_headers,omitempty"`
CustomRequire string `yaml:"custom_require,omitempty" json:"custom_require,omitempty"`
CustomBlock string `yaml:"custom_block,omitempty" json:"custom_block,omitempty"`
IDs []string `yaml:"ids,omitempty" json:"ids,omitempty"`
Expand Down

0 comments on commit e0db6ac

Please sign in to comment.