mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
7 lines
146 B
Go
7 lines
146 B
Go
package packaging
|
|
|
|
import "github.com/goreleaser/nfpm/v2/deb"
|
|
|
|
func BuildDeb(opt Options) (string, error) {
|
|
return buildNFPM(opt, deb.Default)
|
|
}
|