mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-02-03 13:11:48 +02:00
12 lines
204 B
Go
12 lines
204 B
Go
package ext
|
|
|
|
import "strings"
|
|
|
|
// For returns the binary extension for the given platform
|
|
func For(platform string) (ext string) {
|
|
if strings.HasPrefix(platform, "windows") {
|
|
ext = ".exe"
|
|
}
|
|
return
|
|
}
|