Эх сурвалжийг харах

build: disable misspell, upstream bug prevents builds

Péter Szilágyi 8 жил өмнө
parent
commit
15f32a8d57
1 өөрчлөгдсөн 2 нэмэгдсэн , 1 устгасан
  1. 2 1
      build/ci.go

+ 2 - 1
build/ci.go

@@ -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)...)