1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-03 13:11:48 +02:00
Carlos Alexandro Becker 28cf506e9e Update ext.go
2017-06-30 14:21:02 -03:00

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
}