1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-04-13 11:50:34 +02:00

12 lines
204 B
Go
Raw Normal View History

2017-05-11 00:05:51 -03:00
package ext
import "strings"
2017-06-30 14:21:02 -03:00
// For returns the binary extension for the given platform
2017-05-11 00:05:51 -03:00
func For(platform string) (ext string) {
if strings.HasPrefix(platform, "windows") {
ext = ".exe"
}
return
}