1 diff --git a/build/gulpfile.reh.js b/build/gulpfile.reh.js
2 index 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);
9 - const nodePath = `.build/node/v${nodeVersion}/${platform}-${arch}`;
10 - const node = gulp.src(`${nodePath}/**`, { base: nodePath, dot: true });
13 if (type === 'reh-web') {
15 @@ -290,7 +287,6 @@ function packageTask(type, platform, arch, sourceFolderName, destinationFolderNa
23 @@ -408,7 +404,6 @@ function tweakProductForServerWeb(product) {
24 const destinationFolderName = `vscode-${type}${dashed(platform)}${dashed(arch)}`;
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)