Skip to content

Commit 0049bf4

Browse files
committed
fix: update
Signed-off-by: Carlos Alexandro Becker <[email protected]>
1 parent 06df60d commit 0049bf4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pkg/config/config.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ type HomebrewCask struct {
278278
Service string `yaml:"service,omitempty" json:"service,omitempty"`
279279

280280
// Cask only:
281-
Binary string `yaml:"binary,omitempty" json:"binary,omitempty"`
281+
Binaries []string `yaml:"binaries,omitempty" json:"binaries,omitempty"`
282282
Manpages []string `yaml:"manpages,omitempty" json:"manpages,omitempty"`
283283
URL HomebrewCaskURL `yaml:"url,omitempty" json:"url,omitempty"`
284284
Completions HomebrewCaskCompletions `yaml:"completions,omitempty" json:"completions,omitempty"`
@@ -294,6 +294,9 @@ type HomebrewCask struct {
294294

295295
// Deprecated: use [HomebrewCask.Manpages] instead.
296296
Manpage string `yaml:"manpage,omitempty" json:"manpage,omitempty"`
297+
298+
// Deprecated: use [HomebrewCask.Binaries] instead.
299+
Binary string `yaml:"binary,omitempty" json:"binary,omitempty"`
297300
}
298301

299302
type HomebrewCaskURL struct {

0 commit comments

Comments
 (0)