build: disable misspell, upstream bug prevents builds

This commit is contained in:
Péter Szilágyi 2017-04-14 12:24:01 +03:00
parent 6d359dbcc6
commit 15f32a8d57
No known key found for this signature in database
GPG Key ID: E9AE538CEDF8293D
1 changed files with 2 additions and 1 deletions

View File

@ -292,7 +292,8 @@ func doTest(cmdline []string) {
// Run analysis tools before the tests.
build.MustRun(goTool("vet", packages...))
if *misspell {
spellcheck(packages)
// TODO(karalabe): Reenable after false detection is fixed: https://github.com/client9/misspell/issues/105
// spellcheck(packages)
}
// Run the actual tests.
gotest := goTool("test", buildFlags(env)...)