Skip to content

Commit bd2c49f

Browse files
committed
Improve message
1 parent 567052f commit bd2c49f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

go/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ autoformat:
3434
check-formatting:
3535
@output=$$(find . -path '**/vendor' -prune -or -type f -iname '*.go' ! -empty -print0 | xargs -0 grep -L "//\s*autoformat-ignore" | xargs gofmt -l 2>&1); \
3636
if [ -n "$$output" ]; then \
37-
echo "The following files need to be reformatted using gofmt:"; \
37+
echo "The following files need to be reformatted using gofmt or have compilation errors:"; \
3838
echo "$$output"; \
3939
fi; \
4040
test -z "$$output"

0 commit comments

Comments
 (0)