Skip to content

Commit 4764eb8

Browse files
committed
src: fix code coverage cleanup
In nodejs#17987 which updated the location of the code coverage patches I missed a few changes needed to properly clean up for code coverage. Add these.
1 parent 1e0f331 commit 4764eb8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ check: test
144144
coverage-clean:
145145
if [ -d lib_ ]; then $(RM) -r lib; mv lib_ lib; fi
146146
$(RM) -r node_modules
147-
$(RM) -r gcovr testing
147+
$(RM) -r gcovr build
148148
$(RM) -r out/$(BUILDTYPE)/.coverage
149149
$(RM) -r .cov_tmp
150150
$(RM) out/$(BUILDTYPE)/obj.target/node/{src,gen}/*.gcda
@@ -171,7 +171,7 @@ coverage-build: all
171171
$(NODE) ./deps/npm install nyc --no-save --no-package-lock; fi
172172
if [ ! -d gcovr ]; then git clone --depth=1 \
173173
--single-branch git://github.com/gcovr/gcovr.git; fi
174-
if [ ! -d testing ]; then git clone --depth=1 \
174+
if [ ! -d build ]; then git clone --depth=1 \
175175
--single-branch https://github.com/nodejs/build.git; fi
176176
if [ ! -f gcovr/scripts/gcovr.orig ]; then \
177177
(cd gcovr && patch -N -p1 < \

0 commit comments

Comments
 (0)