Skip to content

Commit f98ffff

Browse files
authored
fix a nit error output in Makefile (#25360)
fix ``make: write error: stdout`` ref: https://stackoverflow.com/questions/70671525/write-error-stdout-when-calling-make-from-makefile
1 parent a59bfeb commit f98ffff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ endif
6868

6969
EXTRA_GOFLAGS ?=
7070

71-
MAKE_VERSION := $(shell "$(MAKE)" -v | head -n 1)
71+
MAKE_VERSION := $(shell "$(MAKE)" -v | cat | head -n 1)
7272
MAKE_EVIDENCE_DIR := .make_evidence
7373

7474
ifeq ($(RACE_ENABLED),true)

0 commit comments

Comments
 (0)