Skip to content

Commit 567052f

Browse files
committed
Keep line breaks in list of files formatting
1 parent 5433636 commit 567052f

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
@@ -35,7 +35,7 @@ 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 \
3737
echo "The following files need to be reformatted using gofmt:"; \
38-
echo $$output; \
38+
echo "$$output"; \
3939
fi; \
4040
test -z "$$output"
4141

0 commit comments

Comments
 (0)