aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-04-14 17:24:01 +0800
committerPéter Szilágyi <peterke@gmail.com>2017-04-14 17:24:01 +0800
commit15f32a8d5758544b7993e46a7addf082994a5a3e (patch)
treeb2e575e3dfa6e73de26e6f4dde89688932beba41 /build
parent6d359dbcc6f7f42596960f91fa89b770598965e4 (diff)
downloaddexon-15f32a8d5758544b7993e46a7addf082994a5a3e.tar
dexon-15f32a8d5758544b7993e46a7addf082994a5a3e.tar.gz
dexon-15f32a8d5758544b7993e46a7addf082994a5a3e.tar.bz2
dexon-15f32a8d5758544b7993e46a7addf082994a5a3e.tar.lz
dexon-15f32a8d5758544b7993e46a7addf082994a5a3e.tar.xz
dexon-15f32a8d5758544b7993e46a7addf082994a5a3e.tar.zst
dexon-15f32a8d5758544b7993e46a7addf082994a5a3e.zip
build: disable misspell, upstream bug prevents builds
Diffstat (limited to 'build')
-rw-r--r--build/ci.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/ci.go b/build/ci.go
index 5e63c2411..8b6ebe74c 100644
--- a/build/ci.go
+++ b/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)...)