From b1b78f46e94c91fcad2281ccc9fa36fe802709a9 Mon Sep 17 00:00:00 2001 From: Michael Dawson Date: Thu, 4 Jan 2018 18:42:59 -0500 Subject: [PATCH] src: update make for new code coverage locations The files for code coverage are moving to the build repository. Update the references to reflect this. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 992af027687657..6c88fb2507e9d2 100644 --- a/Makefile +++ b/Makefile @@ -162,10 +162,10 @@ coverage-build: all if [ ! -d gcovr ]; then git clone --depth=1 \ --single-branch git://github.com/gcovr/gcovr.git; fi if [ ! -d testing ]; then git clone --depth=1 \ - --single-branch https://github.com/nodejs/testing.git; fi + --single-branch https://github.com/nodejs/build.git; fi if [ ! -f gcovr/scripts/gcovr.orig ]; then \ (cd gcovr && patch -N -p1 < \ - "$(CURDIR)/testing/coverage/gcovr-patches.diff"); fi + "$(CURDIR)/build/jenkins/scripts/coverage/gcovr-patches.diff"); fi if [ -d lib_ ]; then $(RM) -r lib; mv lib_ lib; fi mv lib lib_ $(NODE) ./node_modules/.bin/nyc instrument --extension .js --extension .mjs lib_/ lib/