good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit 15f32a8d authored by Péter Szilágyi's avatar Péter Szilágyi
Browse files

build: disable misspell, upstream bug prevents builds

parent 6d359dbc
Branches
Tags
No related merge requests found
...@@ -292,7 +292,8 @@ func doTest(cmdline []string) { ...@@ -292,7 +292,8 @@ func doTest(cmdline []string) {
// Run analysis tools before the tests. // Run analysis tools before the tests.
build.MustRun(goTool("vet", packages...)) build.MustRun(goTool("vet", packages...))
if *misspell { 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. // Run the actual tests.
gotest := goTool("test", buildFlags(env)...) gotest := goTool("test", buildFlags(env)...)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment