mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
5a44d01566
This updates the documentation of orbit/pkg/packaging mainly to note that the exported functions are not safe for concurrent usage (subject to change.)
10 lines
234 B
Go
10 lines
234 B
Go
package packaging
|
|
|
|
import "github.com/goreleaser/nfpm/v2/deb"
|
|
|
|
// BuildDeb builds a .deb package
|
|
// Note: this function is not safe for concurrent use
|
|
func BuildDeb(opt Options) (string, error) {
|
|
return buildNFPM(opt, deb.Default)
|
|
}
|