blob: c5628e9f2e78267f9cb41dcd7c049b572be9c2f1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- ts/scripts/fuse-electron.ts.orig 2023-10-19 19:29:53 UTC
+++ ts/scripts/fuse-electron.ts
@@ -17,7 +17,7 @@ export async function afterPack({
target = `${productFilename}.app`;
} else if (electronPlatformName === 'win32') {
target = `${productFilename}.exe`;
- } else if (electronPlatformName === 'linux') {
+ } else if (electronPlatformName === 'linux' || electronPlatformName === 'freebsd') {
// Sadly, `LinuxPackager` type is not exported by electron-builder so we
// have to improvise
target = (packager as unknown as { executableName: string }).executableName;
|