mirror of
https://github.com/fleetdm/fleet
synced 2026-05-21 07:58:31 +00:00
This updates the documentation of orbit/pkg/packaging mainly to note that the exported functions are not safe for concurrent usage (subject to change.)
9 lines
234 B
Go
9 lines
234 B
Go
package packaging
|
|
|
|
import "github.com/goreleaser/nfpm/v2/rpm"
|
|
|
|
// BuildRPM builds a .rpm package
|
|
// Note: this function is not safe for concurrent use
|
|
func BuildRPM(opt Options) (string, error) {
|
|
return buildNFPM(opt, rpm.Default)
|
|
}
|