From e0adc7a07e46d11c70d959c5caa4948d262d1b94 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Thu, 15 Feb 2018 23:21:32 -0800 Subject: [PATCH] download-node-tests: don't delete common.js --- bin/download-node-tests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/download-node-tests.js b/bin/download-node-tests.js index 0be09cb..903d0a9 100755 --- a/bin/download-node-tests.js +++ b/bin/download-node-tests.js @@ -14,7 +14,7 @@ var dirs = [ '/test/pummel' ] -cp.execSync('rm -rf node/*.js', { cwd: path.join(__dirname, '../test') }) +cp.execSync('rm -rf node/test-*.js', { cwd: path.join(__dirname, '../test') }) var httpOpts = { headers: { -- 2.34.1