Skip to content

Commit 3a631cc

Browse files
Enable freebsd amd64 build (#281)
1 parent 773acd8 commit 3a631cc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Magefile.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ func Build() {
2222
linuxS390 := func () error {
2323
return b.Custom("linux", "s390x")
2424
}
25-
mg.Deps(b.Linux, b.Windows, b.Darwin, b.DarwinARM64, b.LinuxARM64, b.LinuxARM, linuxS390)
25+
freebsdAMD64 := func () error {
26+
return b.Custom("freebsd", "amd64")
27+
}
28+
mg.Deps(b.Linux, b.Windows, b.Darwin, b.DarwinARM64, b.LinuxARM64, b.LinuxARM, freebsdAMD64, linuxS390)
2629
}
2730

2831
// Default configures the default target.

0 commit comments

Comments
 (0)