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

Merge pull request #519 from andygrunwald/fix-typo-in-buildtarget

fix: Typo in buildtarget
This commit is contained in:
Carlos Alexandro Becker 2018-01-21 12:19:10 -02:00 committed by GitHub
commit 64c324c7e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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}
}