Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
use xargs to align it with other find commands

Co-authored-by: Livia Medeiros <livia@cirno.name>
  • Loading branch information
kmk324 and LiviaMedeiros authored Oct 7, 2024
1 parent 7766f9f commit c0d3755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ coverage-build-js: ## Build JavaScript coverage files.
.PHONY: coverage-test
coverage-test: coverage-build ## Run the tests and generate a coverage report.
@if [ -d "out/Release/obj.target" ]; then \
$(FIND) out/$(BUILDTYPE)/obj.target -name "*.gcda" -type f -exec $(RM) {} \; ; \
$(FIND) out/$(BUILDTYPE)/obj.target -name "*.gcda" -type f | xargs $(RM); \
fi
-NODE_V8_COVERAGE=coverage/tmp \
TEST_CI_ARGS="$(TEST_CI_ARGS) --type=coverage" $(MAKE) $(COVTESTS)
Expand Down

0 comments on commit c0d3755

Please sign in to comment.