| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 | 
							- diff --git a/build/gulpfile.vscode.linux.js b/build/gulpfile.vscode.linux.js
 
- index 8c2b62f..843e8d4 100644
 
- --- a/build/gulpfile.vscode.linux.js
 
- +++ b/build/gulpfile.vscode.linux.js
 
- @@ -187,2 +187,3 @@ function prepareRpmPackage(arch) {
 
-  		const spec = code.pipe(es.through(
 
- +			null,
 
-  			async function () {
 
- @@ -302,4 +303,3 @@ BUILD_TARGETS.forEach(({ arch }) => {
 
-  	const prepareDebTask = task.define(`vscode-linux-${arch}-prepare-deb`, task.series(util.rimraf(`.build/linux/deb/${debArch}`), prepareDebPackage(arch)));
 
- -	gulp.task(prepareDebTask);
 
- -	const buildDebTask = task.define(`vscode-linux-${arch}-build-deb`, buildDebPackage(arch));
 
- +	const buildDebTask = task.define(`vscode-linux-${arch}-build-deb`, task.series(prepareDebTask, buildDebPackage(arch)));
 
-  	gulp.task(buildDebTask);
 
- @@ -308,4 +308,3 @@ BUILD_TARGETS.forEach(({ arch }) => {
 
-  	const prepareRpmTask = task.define(`vscode-linux-${arch}-prepare-rpm`, task.series(util.rimraf(`.build/linux/rpm/${rpmArch}`), prepareRpmPackage(arch)));
 
- -	gulp.task(prepareRpmTask);
 
- -	const buildRpmTask = task.define(`vscode-linux-${arch}-build-rpm`, buildRpmPackage(arch));
 
- +	const buildRpmTask = task.define(`vscode-linux-${arch}-build-rpm`, task.series(prepareRpmTask, buildRpmPackage(arch)));
 
-  	gulp.task(buildRpmTask);
 
- diff --git a/build/linux/dependencies-generator.js b/build/linux/dependencies-generator.js
 
- index e40ed70..3e7dbc9 100644
 
- --- a/build/linux/dependencies-generator.js
 
- +++ b/build/linux/dependencies-generator.js
 
- @@ -24,3 +24,3 @@ const product = require("../../product.json");
 
-  // are valid, are in dep-lists.ts
 
- -const FAIL_BUILD_FOR_NEW_DEPENDENCIES = true;
 
- +const FAIL_BUILD_FOR_NEW_DEPENDENCIES = false;
 
-  // Based on https://source.chromium.org/chromium/chromium/src/+/refs/tags/118.0.5993.159:chrome/installer/linux/BUILD.gn;l=64-80
 
- @@ -56,3 +56,3 @@ async function getDependencies(packageType, buildDir, applicationName, arch) {
 
-      // Add the tunnel binary.
 
- -    files.push(path.join(buildDir, 'bin', product.tunnelApplicationName));
 
- +    // files.push(path.join(buildDir, 'bin', product.tunnelApplicationName));
 
-      // Add the main executable.
 
- diff --git a/build/linux/dependencies-generator.ts b/build/linux/dependencies-generator.ts
 
- index 12bc3c0..4c3a4ac 100644
 
- --- a/build/linux/dependencies-generator.ts
 
- +++ b/build/linux/dependencies-generator.ts
 
- @@ -25,3 +25,3 @@ import product = require('../../product.json');
 
-  // are valid, are in dep-lists.ts
 
- -const FAIL_BUILD_FOR_NEW_DEPENDENCIES: boolean = true;
 
- +const FAIL_BUILD_FOR_NEW_DEPENDENCIES: boolean = false;
 
-  
 
- @@ -61,3 +61,3 @@ export async function getDependencies(packageType: 'deb' | 'rpm', buildDir: stri
 
-  	// Add the tunnel binary.
 
- -	files.push(path.join(buildDir, 'bin', product.tunnelApplicationName));
 
- +	// files.push(path.join(buildDir, 'bin', product.tunnelApplicationName));
 
-  	// Add the main executable.
 
- diff --git a/resources/linux/rpm/code.spec.template b/resources/linux/rpm/code.spec.template
 
- index c9e57db..bda2604 100644
 
- --- a/resources/linux/rpm/code.spec.template
 
- +++ b/resources/linux/rpm/code.spec.template
 
- @@ -87 +87,3 @@ update-mime-database %{_datadir}/mime &> /dev/null || :
 
-  %{_datadir}/zsh/site-functions/_%{name}
 
- +
 
- +%config(noreplace) /usr/share/%{name}/resources/app/product.json
 
- \ No newline at end of file
 
 
  |