There was an error while loading. Please reload this page.
$(BUILDTYPE)
1 parent d9700fe commit f37633eCopy full SHA for f37633e
1 file changed
Makefile
@@ -238,7 +238,7 @@ coverage-clean: ## Remove coverage artifacts.
238
$(RM) -r node_modules
239
$(RM) -r gcovr
240
$(RM) -r coverage/tmp
241
- @if [ -d"out/Release/obj.target" ];then\
+ @if [ -d"out/$(BUILDTYPE)/obj.target" ];then\
242
$(FIND) out/$(BUILDTYPE)/obj.target \( -name "*.gcda" -o -name "*.gcno"\)\
243
-type f | xargs $(RM);\
244
fi
@@ -265,7 +265,7 @@ coverage-build-js: ## Build JavaScript coverage files.
265
266
.PHONY: coverage-test
267
coverage-test: coverage-build ## Run the tests and generate a coverage report.
268
269
$(FIND) out/$(BUILDTYPE)/obj.target -name "*.gcda" -type f | xargs $(RM);\
270
271
-NODE_V8_COVERAGE=coverage/tmp \
0 commit comments