magefile: Disable Go 1.10 gofmt check for now

This commit is contained in:
Bjørn Erik Pedersen 2018-02-17 01:24:07 +01:00
parent a3f26e5636
commit 3ced6f8d47
No known key found for this signature in database
GPG key ID: 330E6E2BD4859D8F

View file

@ -259,5 +259,5 @@ func CheckVendor() error {
}
func isGoTip() bool {
return strings.Contains(runtime.Version(), "devel")
return strings.Contains(runtime.Version(), "devel") || strings.Contains(runtime.Version(), "1.10")
}