We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 567052f commit bd2c49fCopy full SHA for bd2c49f
go/Makefile
@@ -34,7 +34,7 @@ autoformat:
34
check-formatting:
35
@output=$$(find . -path '**/vendor' -prune -or -type f -iname '*.go' ! -empty -print0 | xargs -0 grep -L "//\s*autoformat-ignore" | xargs gofmt -l 2>&1); \
36
if [ -n "$$output" ]; then \
37
- echo "The following files need to be reformatted using gofmt:"; \
+ echo "The following files need to be reformatted using gofmt or have compilation errors:"; \
38
echo "$$output"; \
39
fi; \
40
test -z "$$output"
0 commit comments