goreleaser / nfpm

nFPM is Not FPM - a simple deb, rpm, apk, ipk, and arch linux packager written in Go
https://nfpm.goreleaser.com/
MIT License
2.14k stars 156 forks source link

Correct GOARCH docs #733

Closed cognifloyd closed 10 months ago

cognifloyd commented 10 months ago

The docs had an extra v in the GOARCH+GOARM values.

Drop the v to match the actual translation tables:

https://github.com/goreleaser/nfpm/blob/6c241370ccdd5718730556f2b8c13e4733d0fda7/apk/apk.go#L65-L66 https://github.com/goreleaser/nfpm/blob/6c241370ccdd5718730556f2b8c13e4733d0fda7/arch/arch.go#L46-L48 https://github.com/goreleaser/nfpm/blob/6c241370ccdd5718730556f2b8c13e4733d0fda7/deb/deb.go#L40-L42 https://github.com/goreleaser/nfpm/blob/6c241370ccdd5718730556f2b8c13e4733d0fda7/rpm/rpm.go#L63-L65

caarlos0 commented 10 months ago

good catch, thank you!