add bin to both

This commit is contained in:
Evan Simkowitz 2024-02-29 12:08:14 -08:00
parent 679d336dfd
commit fa295a2bb4
No known key found for this signature in database

View File

@ -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,
},
},
},
],
};