Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1diff --git a/build/gulpfile.reh.js b/build/gulpfile.reh.js 2index 4630eaad3cc..96b165b0949 100644 3--- a/build/gulpfile.reh.js 4+++ b/build/gulpfile.reh.js 5@@ -271,9 +271,6 @@ function packageTask(type, platform, arch, sourceFolderName, destinationFolderNa 6 .pipe(util.stripSourceMappingURL()) 7 .pipe(jsFilter.restore); 8 9- const nodePath = `.build/node/v${nodeVersion}/${platform}-${arch}`; 10- const node = gulp.src(`${nodePath}/**`, { base: nodePath, dot: true }); 11- 12 let web = []; 13 if (type === 'reh-web') { 14 web = [ 15@@ -290,7 +287,6 @@ function packageTask(type, platform, arch, sourceFolderName, destinationFolderNa 16 license, 17 sources, 18 deps, 19- node, 20 ...web 21 ); 22 23@@ -408,7 +404,6 @@ function tweakProductForServerWeb(product) { 24 const destinationFolderName = `vscode-${type}${dashed(platform)}${dashed(arch)}`; 25 26 const serverTaskCI = task.define(`vscode-${type}${dashed(platform)}${dashed(arch)}${dashed(minified)}-ci`, task.series( 27- gulp.task(`node-${platform}-${arch}`), 28 util.rimraf(path.join(BUILD_ROOT, destinationFolderName)), 29 packageTask(type, platform, arch, sourceFolderName, destinationFolderName) 30 ));