fix-build.patch 1.6 KB

12345678910111213141516171819202122232425262728
  1. diff --git a/build/linux/dependencies-generator.js b/build/linux/dependencies-generator.js
  2. index 7521729..92c0d8e 100644
  3. --- a/build/linux/dependencies-generator.js
  4. +++ b/build/linux/dependencies-generator.js
  5. @@ -27,3 +27,3 @@ const product = require("../../product.json");
  6. // are valid, are in dep-lists.ts
  7. -const FAIL_BUILD_FOR_NEW_DEPENDENCIES = true;
  8. +const FAIL_BUILD_FOR_NEW_DEPENDENCIES = false;
  9. // Based on https://source.chromium.org/chromium/chromium/src/+/refs/tags/134.0.6998.205:chrome/installer/linux/BUILD.gn;l=64-80
  10. @@ -60,3 +60,3 @@ async function getDependencies(packageType, buildDir, applicationName, arch) {
  11. // Add the tunnel binary.
  12. - files.push(path_1.default.join(buildDir, 'bin', product.tunnelApplicationName));
  13. + // files.push(path_1.default.join(buildDir, 'bin', product.tunnelApplicationName));
  14. // Add the main executable.
  15. diff --git a/build/linux/dependencies-generator.ts b/build/linux/dependencies-generator.ts
  16. index 9383703..5e6bcf2 100644
  17. --- a/build/linux/dependencies-generator.ts
  18. +++ b/build/linux/dependencies-generator.ts
  19. @@ -25,3 +25,3 @@ import product = require('../../product.json');
  20. // are valid, are in dep-lists.ts
  21. -const FAIL_BUILD_FOR_NEW_DEPENDENCIES: boolean = true;
  22. +const FAIL_BUILD_FOR_NEW_DEPENDENCIES: boolean = false;
  23. @@ -62,3 +62,3 @@ export async function getDependencies(packageType: 'deb' | 'rpm', buildDir: stri
  24. // Add the tunnel binary.
  25. - files.push(path.join(buildDir, 'bin', product.tunnelApplicationName));
  26. + // files.push(path.join(buildDir, 'bin', product.tunnelApplicationName));
  27. // Add the main executable.