You've already forked goreleaser
mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-07-01 00:54:57 +02:00
15 lines
295 B
Go
15 lines
295 B
Go
![]() |
package universalbinary
|
||
|
|
||
|
import "github.com/goreleaser/goreleaser/v2/internal/tmpl"
|
||
|
|
||
|
type unitarget struct{}
|
||
|
|
||
|
func (unitarget) String() string { return "darwin_all" }
|
||
|
|
||
|
func (unitarget) Fields() map[string]string {
|
||
|
return map[string]string{
|
||
|
tmpl.KeyOS: "darwin",
|
||
|
tmpl.KeyArch: "all",
|
||
|
}
|
||
|
}
|