1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-10 03:47:03 +02:00
goreleaser/internal/ext/ext.go

11 lines
145 B
Go
Raw Normal View History

2017-05-11 05:05:51 +02:00
package ext
import "strings"
func For(platform string) (ext string) {
if strings.HasPrefix(platform, "windows") {
ext = ".exe"
}
return
}