1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-22 20:55:03 +03:00
tabby/patches/app-builder-lib+24.6.4.patch

16 lines
660 B
Diff
Raw Normal View History

diff --git a/node_modules/app-builder-lib/out/appInfo.js b/node_modules/app-builder-lib/out/appInfo.js
2023-07-19 00:18:54 +03:00
index 49f6dca..0ea11f2 100644
--- a/node_modules/app-builder-lib/out/appInfo.js
+++ b/node_modules/app-builder-lib/out/appInfo.js
2023-07-19 00:18:54 +03:00
@@ -112,9 +112,7 @@ class AppInfo {
return this.info.metadata.name;
}
get linuxPackageName() {
- const name = this.name;
- // https://github.com/electron-userland/electron-builder/issues/2963
- return name.startsWith("@") ? this.sanitizedProductName : name;
2023-07-19 00:18:54 +03:00
+ return 'tabby-terminal';
}
get sanitizedName() {
2023-07-19 00:18:54 +03:00
return (0, filename_1.sanitizeFileName)(this.name);