From fa295a2bb49bfda6edf0ffd3114877640619614a Mon Sep 17 00:00:00 2001 From: Evan Simkowitz Date: Thu, 29 Feb 2024 12:08:14 -0800 Subject: [PATCH] add bin to both --- forge.config.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/forge.config.js b/forge.config.js index 01cd56238..98eebf32b 100644 --- a/forge.config.js +++ b/forge.config.js @@ -44,6 +44,8 @@ function ignoreFn(path) { return false; } +const appName = "Wave"; + module.exports = { packagerConfig: { ignore: ignoreFn, @@ -60,13 +62,17 @@ module.exports = { name: "@electron-forge/maker-deb", config: { options: { - bin: "Wave", + bin: appName, }, }, }, { name: "@electron-forge/maker-rpm", - config: {}, + config: { + options: { + bin: appName, + }, + }, }, ], };