From e5fc9ffdf6886128cae7e0792e78149bac377aa6 Mon Sep 17 00:00:00 2001 From: "Michael Bradley, Jr" Date: Tue, 30 Apr 2019 16:45:29 -0500 Subject: [PATCH] test: revise coverage-collect.js so it runs correctly on Windows --- scripts/coverage-collect.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/coverage-collect.js b/scripts/coverage-collect.js index 0c5d6af38..d0e4e37fd 100644 --- a/scripts/coverage-collect.js +++ b/scripts/coverage-collect.js @@ -7,7 +7,7 @@ const rimraf = require('util').promisify(require('rimraf')); const collector = path.join(__dirname, './coverage-collector.js'); const destination = path.join(__dirname, '../.nyc_output'); -const cmd = `npx lerna exec --parallel 'node "${collector}" "${destination}"'`; +const cmd = `npx lerna exec --parallel node "${collector}" "${destination}"`; (async () => { await fs.mkdirp(destination);