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

View File

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