1diff --git a/build/gulpfile.reh.js b/build/gulpfile.reh.js
2index a44941a1e73..5fc924cb367 100644
3--- a/build/gulpfile.reh.js
4+++ b/build/gulpfile.reh.js
5@@ -265,8 +265,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@@ -284,7 +282,6 @@ function packageTask(type, platform, arch, sourceFolderName, destinationFolderNa
15 license,
16 sources,
17 deps,
18- node,
19 ...web
20 );
21
22@@ -382,7 +379,6 @@ function tweakProductForServerWeb(product) {
23 const destinationFolderName = `vscode-${type}${dashed(platform)}${dashed(arch)}`;
24
25 const serverTaskCI = task.define(`vscode-${type}${dashed(platform)}${dashed(arch)}${dashed(minified)}-ci`, task.series(
26- gulp.task(`node-${platform}-${arch}`),
27 util.rimraf(path.join(BUILD_ROOT, destinationFolderName)),
28 packageTask(type, platform, arch, sourceFolderName, destinationFolderName)
29 ));