fleet/orbit/pkg/packaging/rpm.go
Roberto Dip 5a44d01566
update documentation of orbit/pkg/packaging (#6819)
This updates the documentation of orbit/pkg/packaging mainly to note that the exported functions are not safe for concurrent usage (subject to change.)
2022-07-25 20:14:20 -03:00

10 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)
}