mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-03-21 21:07:19 +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",
|
||
|
}
|
||
|
}
|