1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-17 20:47:50 +02:00

fix: Typo in buildtarget

The buildtarget contained a typo. This fixes it.
This commit is contained in:
Andy Grunwald 2018-01-20 18:30:33 +01:00
parent fcbdaf32c8
commit 825f19bb55

View File

@ -5,10 +5,10 @@ import (
"runtime"
)
// Runtime is the current runtime buildTarget
// Runtime is the current runtime build target
var Runtime = Target{runtime.GOOS, runtime.GOARCH, ""}
// New builtarget
// New build Target
func New(goos, goarch, goarm string) Target {
return Target{goos, goarch, goarm}
}