1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-24 04:16:27 +02:00
2017-05-11 00:05:51 -03:00

11 lines
145 B
Go

package ext
import "strings"
func For(platform string) (ext string) {
if strings.HasPrefix(platform, "windows") {
ext = ".exe"
}
return
}