Skip to content

Commit

Permalink
Explicitly pass quiet into the recursive make invocation to make over…
Browse files Browse the repository at this point in the history
…riding the QUIET configuration more straightforward
  • Loading branch information
obra committed Dec 24, 2024
1 parent 72a0d20 commit 59ea7c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testing/makefiles/testcase.mk
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ ${BIN_DIR}/${BIN_FILE}: compile-sketch
.PHONY: compile-sketch
compile-sketch: ${libcommon_a} ${TEST_OBJS}
-@install -d "${BIN_DIR}" "${LIB_DIR}"
$(QUIET) env LIBONLY=yes VERBOSE=${VERBOSE} \
$(QUIET) env LIBONLY=yes VERBOSE=${VERBOSE} QUIET=$(QUIET) \
OUTPUT_PATH="${LIB_DIR}" \
_ARDUINO_CLI_COMPILE_CUSTOM_FLAGS='--build-property upload.maximum_size=""' \
$(MAKE) -f ${top_dir}/etc/makefiles/sketch.mk compile
Expand Down

0 comments on commit 59ea7c3

Please sign in to comment.