From 61c5e4b54a46beed975cbc7b4bb8f32832fac4a5 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sun, 23 Jul 2017 15:51:39 +0200 Subject: [PATCH] Fix glyphcheck --- run_integration_tests.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_integration_tests.go b/run_integration_tests.go index a4ae68dbd..0cee85805 100644 --- a/run_integration_tests.go +++ b/run_integration_tests.go @@ -364,7 +364,7 @@ func runGofmt() error { } func runGlyphcheck() error { - cmd := exec.Command("glyphcheck", "./...") + cmd := exec.Command("glyphcheck", "./cmd/...", "./internal/...") cmd.Stderr = os.Stderr buf, err := cmd.Output()