mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 16:39:01 +00:00
10 lines
258 B
Go
10 lines
258 B
Go
|
|
package packaging
|
||
|
|
|
||
|
|
import "github.com/goreleaser/nfpm/v2/arch"
|
||
|
|
|
||
|
|
// BuildPkgTarZst builds a .pkg.tar.zst package.
|
||
|
|
// Note: this function is not safe for concurrent use.
|
||
|
|
func BuildPkgTarZst(opt Options) (string, error) {
|
||
|
|
return buildNFPM(opt, arch.Default)
|
||
|
|
}
|